array( 'id' => 'the_newsmag_page_layout', 'value' => 'default_layout', 'label' => esc_html__('Default Layout', 'the-newsmag'), ), 'right-sidebar' => array( 'id' => 'the_newsmag_page_layout', 'value' => 'right_sidebar', 'label' => esc_html__('Right Sidebar', 'the-newsmag'), ), 'left-sidebar' => array( 'id' => 'the_newsmag_page_layout', 'value' => 'left_sidebar', 'label' => esc_html__('Left Sidebar', 'the-newsmag'), ), 'no-sidebar-full-width' => array( 'id' => 'the_newsmag_page_layout', 'value' => 'no_sidebar_full_width', 'label' => esc_html__('No Sidebar Full Width', 'the-newsmag'), ), 'no-sidebar-content-centered' => array( 'id' => 'the_newsmag_page_layout', 'value' => 'no_sidebar_content_centered', 'label' => esc_html__('No Sidebar Content Centered', 'the-newsmag'), ), ); /** * Displaying the metabox in the editor section for select layout option of the post/page individually */ function the_newsmag_page_layout() { global $the_newsmag_page_layout, $post; // Use nonce for verification wp_nonce_field(basename(__FILE__), 'custom_meta_box_nonce'); foreach ($the_newsmag_page_layout as $field) { $the_newsmag_layout_meta = get_post_meta($post->ID, $field['id'], true); if (empty($the_newsmag_layout_meta)) { $the_newsmag_layout_meta = 'default_layout'; } ?> />