manager->get_setting( Bizline_Helper::with_prefix( 'home-feature-status' ) )->value(); return $value; } endif; function bizline_front_page_feature_options(){ Bizline_Customizer::set(array( # Front Page option 'panel' => array( 'id' => 'front-panel' ), # Front Page Option > Feature 'section' => array( 'id' => 'home-feature', 'title' => esc_html__( 'Feature','bizline' ), 'priority' => 5 ), # Front Page Option > Feature > settings 'fields' => array( array( 'id' => 'home-feature-status', 'label' => esc_html__( 'Enable', 'bizline' ), 'default' => false, 'type' => 'toggle', ), array( 'id' => 'home-feature-title-page', 'label' => esc_html__( 'Title', 'bizline' ), 'description' => esc_html__( 'Select page for section title and description', 'bizline' ), 'default' => 0, 'active_callback' => 'acb_front_feature', 'type' => 'dropdown-pages', ), array( 'id' => 'home-feature-excerpt-length', 'label' => esc_html__( 'Excerpt Length', 'bizline' ), 'default' => 30, 'active_callback' => 'acb_front_feature', 'type' => 'number', ), array( 'id' => 'home-feature-one', 'label' => esc_html__( 'Feature 1', 'bizline' ), 'default' => 0, 'active_callback' => 'acb_front_feature', 'type' => 'dropdown-pages', ), array( 'id' => 'home-feature-two', 'label' => esc_html__( 'Feature 2', 'bizline' ), 'default' => 0, 'active_callback' => 'acb_front_feature', 'type' => 'dropdown-pages', ), array( 'id' => 'home-feature-three', 'label' => esc_html__( 'Feature 3', 'bizline' ), 'default' => 0, 'active_callback' => 'acb_front_feature', 'type' => 'dropdown-pages', ), array( 'id' => 'home-feature-four', 'label' => esc_html__( 'Feature 4', 'bizline' ), 'default' => 0, 'active_callback' => 'acb_front_feature', 'type' => 'dropdown-pages', ), array( 'id' => 'home-feature-five', 'label' => esc_html__( 'Feature 5', 'bizline' ), 'default' => 0, 'active_callback' => 'acb_front_feature', 'type' => 'dropdown-pages', ), array( 'id' => 'home-feature-six', 'label' => esc_html__( 'Feature 6', 'bizline' ), 'default' => 0, 'active_callback' => 'acb_front_feature', 'type' => 'dropdown-pages', ), ), )); } add_action( 'init', 'bizline_front_page_feature_options' );