add_section( 'apex_news_post_carousel_section', array( 'panel' => 'legal_news_front_page_options', 'title' => esc_html__( 'Post Carousel Section', 'apex-news' ), 'priority' => 25, ) ); // Post Carousel Section - Enable Section. $wp_customize->add_setting( 'apex_news_enable_post_carousel_section', array( 'default' => false, 'sanitize_callback' => 'legal_news_sanitize_switch', ) ); $wp_customize->add_control( new Legal_News_Toggle_Switch_Custom_Control( $wp_customize, 'apex_news_enable_post_carousel_section', array( 'label' => esc_html__( 'Enable Post Carousel Section', 'apex-news' ), 'section' => 'apex_news_post_carousel_section', 'settings' => 'apex_news_enable_post_carousel_section', ) ) ); if ( isset( $wp_customize->selective_refresh ) ) { $wp_customize->selective_refresh->add_partial( 'apex_news_enable_post_carousel_section', array( 'selector' => '#apex_news_post_carousel_section .section-link', 'settings' => 'apex_news_enable_post_carousel_section', ) ); } // Post Carousel Section - Section Title. $wp_customize->add_setting( 'apex_news_post_carousel_title', array( 'default' => __( 'Post Carousel', 'apex-news' ), 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'apex_news_post_carousel_title', array( 'label' => esc_html__( 'Section Title', 'apex-news' ), 'section' => 'apex_news_post_carousel_section', 'settings' => 'apex_news_post_carousel_title', 'type' => 'text', 'active_callback' => 'apex_news_is_post_carousel_section_enabled', ) ); // Post Carousel Section - Content Type. $wp_customize->add_setting( 'apex_news_post_carousel_content_type', array( 'default' => 'category', 'sanitize_callback' => 'legal_news_sanitize_select', ) ); $wp_customize->add_control( 'apex_news_post_carousel_content_type', array( 'label' => esc_html__( 'Select Content Type', 'apex-news' ), 'section' => 'apex_news_post_carousel_section', 'settings' => 'apex_news_post_carousel_content_type', 'type' => 'select', 'active_callback' => 'apex_news_is_post_carousel_section_enabled', 'choices' => array( 'post' => esc_html__( 'Post', 'apex-news' ), 'category' => esc_html__( 'Category', 'apex-news' ), ), ) ); for ( $i = 1; $i <= 4; $i++ ) { // Post Carousel Section - Select Post. $wp_customize->add_setting( 'apex_news_post_carousel_content_post_' . $i, array( 'sanitize_callback' => 'absint', ) ); $wp_customize->add_control( 'apex_news_post_carousel_content_post_' . $i, array( 'label' => sprintf( esc_html__( 'Select Post %d', 'apex-news' ), $i ), 'section' => 'apex_news_post_carousel_section', 'settings' => 'apex_news_post_carousel_content_post_' . $i, 'active_callback' => 'apex_news_is_post_carousel_section_and_content_type_post_enabled', 'type' => 'select', 'choices' => legal_news_get_post_choices(), ) ); } // Post Carousel Section - Select Category. $wp_customize->add_setting( 'apex_news_post_carousel_content_category', array( 'sanitize_callback' => 'legal_news_sanitize_select', ) ); $wp_customize->add_control( 'apex_news_post_carousel_content_category', array( 'label' => esc_html__( 'Select Category', 'apex-news' ), 'section' => 'apex_news_post_carousel_section', 'settings' => 'apex_news_post_carousel_content_category', 'active_callback' => 'apex_news_is_post_carousel_section_and_content_type_category_enabled', 'type' => 'select', 'choices' => legal_news_get_post_cat_choices(), ) ); // Post Carousel Section - Button Label. $wp_customize->add_setting( 'apex_news_post_carousel_button_label', array( 'default' => __( 'View All', 'apex-news' ), 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'apex_news_post_carousel_button_label', array( 'label' => esc_html__( 'Button Label', 'apex-news' ), 'section' => 'apex_news_post_carousel_section', 'settings' => 'apex_news_post_carousel_button_label', 'type' => 'text', 'active_callback' => 'apex_news_is_post_carousel_section_enabled', ) ); // Team Section - Button Link. $wp_customize->add_setting( 'apex_news_post_carousel_button_link', array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'apex_news_post_carousel_button_link', array( 'label' => esc_html__( 'Button Link', 'apex-news' ), 'section' => 'apex_news_post_carousel_section', 'settings' => 'apex_news_post_carousel_button_link', 'type' => 'url', 'active_callback' => 'apex_news_is_post_carousel_section_enabled', ) );