bizstrait_sidbar_option = array( 'left-sidebar' => array( 'value' => 'left-sidebar', 'label' => __( 'Left Sidebar', 'bizstrait' ), 'thumbnail' => BIZSTRAIT_ASSETS . 'images/sidebar-left.png', ), 'No sidebar' => array( 'value' => 'full-width', 'label' => __( 'Full Width', 'bizstrait' ), 'thumbnail' => BIZSTRAIT_ASSETS . 'images/sidebar-none.png', ), 'right-sidebar' => array( 'value' => 'right-sidebar', 'label' => __( 'Right Sidebar', 'bizstrait' ), 'thumbnail' => BIZSTRAIT_ASSETS . 'images/sidebar-right.png', ) ); add_action( 'add_meta_boxes', array( $this, 'bizstrait_add_sidebar_layout_box' ) ); add_action( 'save_post', array( $this, 'bizstrait_save_sidebar_layout' ) ); } function bizstrait_add_sidebar_layout_box() { global $post; if(!empty($post)) { $pageTemplate = get_post_meta($post->ID, '_wp_page_template', true); if(!in_array($pageTemplate, apply_filters('bizstrait_templates', array('template/template-about.php','template-portfolio.php','contact.php')))) { add_meta_box( 'bizstrait_page_sidebar_layout', __( 'Sidebar Layout', 'bizstrait' ), array( $this, 'bizstrait_page_sidebar_layout_callback' ), 'page', 'normal', 'high' ); } } } function bizstrait_page_sidebar_layout_callback() { global $post; wp_nonce_field( basename( __FILE__ ), 'bizstrait_nonce' ); ?>
|
bizstrait_sidbar_option as $field ) {
$layout = sanitize_text_field( get_post_meta( $post->ID, '_sidebar_layout', true ) );
?>
|
|||