array( 'type' => 'select', 'label' => esc_html__( 'Sidebar Position:', 'business-power' ), 'default' => 'customizer', 'choices' => array( 'customizer' => esc_html__( 'From customizer', 'business-power' ), 'left-sidebar' => esc_html__( 'Left', 'business-power' ), 'right-sidebar' => esc_html__( 'Right', 'business-power' ), 'no-sidebar' => esc_html__( 'Hide', 'business-power' ), ), ), 'use-customizer-image-for-banner' => array( 'type' => 'checkbox', 'label' => esc_html__( 'Use banner from customizer', 'business-power' ) ) ); if( 'page' == $type ){ $page_options = array( 'disable-inner-banner' => array( 'type' => 'checkbox', 'label' => esc_html__( 'Disable Banner', 'business-power' ), ), 'disable-footer-widget' => array( 'type' => 'checkbox', 'label' => esc_html__( 'Disable Footer Widget', 'business-power' ), ) ); $options = array_merge( $options, $page_options ); } $post->add_meta_box( $label, $options ); } } add_action( 'init', 'business_power_custom_fields' );