'page-options', 'title' => esc_html__( 'Page Options', 'stylizer' ), 'post_types' => array( 'page' ), 'context' => 'advanced', 'priority' => 'high', 'autosave' => false, 'fields' => array( array( 'id' => $prefix . 'sidebar_primary', 'name' => esc_html__( 'Primary Sidebar', 'stylizer' ), 'type' => 'select', 'placeholder' => esc_html__( 'Select a sidebar', 'stylizer' ), 'options' => $sidebars_choices, ), array( 'id' => $prefix . 'layout', 'type' => 'image_select', 'name' => esc_html__( 'Layout', 'stylizer' ), 'std' => 'inherit', 'force_delete' => false, 'max_file_uploads' => '4', 'options' => array( 'inherit' => get_template_directory_uri() . '/functions/images/layout-off.png', 'col-1c' => get_template_directory_uri() . '/functions/images/col-1c.png', 'col-2cl' => get_template_directory_uri() . '/functions/images/col-2cl.png', ), ), ), ); /* Post options /* ------------------------------------ */ $meta_boxes[] = array( 'id' => 'post-options', 'title' => esc_html__( 'Post Options', 'stylizer' ), 'post_types' => array( 'post' ), 'context' => 'advanced', 'priority' => 'high', 'autosave' => false, 'fields' => array( array( 'id' => $prefix . 'sidebar_primary', 'name' => esc_html__( 'Primary Sidebar', 'stylizer' ), 'type' => 'select', 'placeholder' => esc_html__( 'Select a sidebar', 'stylizer' ), 'options' => $sidebars_choices, ), array( 'id' => $prefix . 'layout', 'type' => 'image_select', 'name' => esc_html__( 'Layout', 'stylizer' ), 'std' => 'inherit', 'force_delete' => false, 'max_file_uploads' => '4', 'options' => array( 'inherit' => get_template_directory_uri() . '/functions/images/layout-off.png', 'col-1c' => get_template_directory_uri() . '/functions/images/col-1c.png', 'col-2cl' => get_template_directory_uri() . '/functions/images/col-2cl.png', ), ), ), ); return $meta_boxes; } add_filter( 'rwmb_meta_boxes', 'stylizer_get_meta_box' );