add_section( 'blog_point_flash_posts_section', array( 'title' => esc_html__( 'Flash Posts Section', 'blog-point' ), 'panel' => 'blog_point_frontpage_panel', ) ); // Flash Posts section enable settings. $wp_customize->add_setting( 'blog_point_flash_posts_section_enable', array( 'default' => false, 'sanitize_callback' => 'blog_point_sanitize_checkbox', ) ); $wp_customize->add_control( new Blog_Point_Toggle_Checkbox_Custom_control( $wp_customize, 'blog_point_flash_posts_section_enable', array( 'label' => esc_html__( 'Enable Flash Posts Section', 'blog-point' ), 'type' => 'checkbox', 'settings' => 'blog_point_flash_posts_section_enable', 'section' => 'blog_point_flash_posts_section', ) ) ); // Flash Posts Section title settings. $wp_customize->add_setting( 'blog_point_flash_posts_title', array( 'default' => __( 'Flash Posts', 'blog-point' ), 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'blog_point_flash_posts_title', array( 'label' => esc_html__( 'Section Title', 'blog-point' ), 'section' => 'blog_point_flash_posts_section', 'active_callback' => 'blog_point_if_flash_posts_enabled', ) ); // Abort if selective refresh is not available. if ( isset( $wp_customize->selective_refresh ) ) { $wp_customize->selective_refresh->add_partial( 'blog_point_flash_posts_title', array( 'selector' => '.flash-posts .flash-posts-title span', 'settings' => 'blog_point_flash_posts_title', 'container_inclusive' => false, 'fallback_refresh' => true, ) ); } // flash_posts content type settings. $wp_customize->add_setting( 'blog_point_flash_posts_content_type', array( 'default' => 'post', 'sanitize_callback' => 'blog_point_sanitize_select', ) ); $wp_customize->add_control( 'blog_point_flash_posts_content_type', array( 'label' => esc_html__( 'Content type:', 'blog-point' ), 'description' => esc_html__( 'Choose where you want to render the content from.', 'blog-point' ), 'section' => 'blog_point_flash_posts_section', 'type' => 'select', 'active_callback' => 'blog_point_if_flash_posts_enabled', 'choices' => array( 'post' => esc_html__( 'Post', 'blog-point' ), 'category' => esc_html__( 'Category', 'blog-point' ), ), ) ); for ( $i = 1; $i <= 5; $i++ ) { // flash_posts post setting. $wp_customize->add_setting( 'blog_point_flash_posts_post_' . $i, array( 'sanitize_callback' => 'blog_point_sanitize_dropdown_pages', ) ); $wp_customize->add_control( 'blog_point_flash_posts_post_' . $i, array( 'label' => sprintf( esc_html__( 'Post %d', 'blog-point' ), $i ), 'section' => 'blog_point_flash_posts_section', 'type' => 'select', 'choices' => blog_point_get_post_choices(), 'active_callback' => 'blog_point_flash_posts_section_content_type_post_enabled', ) ); } // flash_posts category setting. $wp_customize->add_setting( 'blog_point_flash_posts_category', array( 'sanitize_callback' => 'blog_point_sanitize_select', ) ); $wp_customize->add_control( 'blog_point_flash_posts_category', array( 'label' => esc_html__( 'Category', 'blog-point' ), 'section' => 'blog_point_flash_posts_section', 'type' => 'select', 'choices' => blog_point_get_post_cat_choices(), 'active_callback' => 'blog_point_flash_posts_section_content_type_category_enabled', ) ); /*========================Active Callback==============================*/ function blog_point_if_flash_posts_enabled( $control ) { return $control->manager->get_setting( 'blog_point_flash_posts_section_enable' )->value(); } function blog_point_flash_posts_section_content_type_post_enabled( $control ) { $content_type = $control->manager->get_setting( 'blog_point_flash_posts_content_type' )->value(); return blog_point_if_flash_posts_enabled( $control ) && ( 'post' === $content_type ); } function blog_point_flash_posts_section_content_type_category_enabled( $control ) { $content_type = $control->manager->get_setting( 'blog_point_flash_posts_content_type' )->value(); return blog_point_if_flash_posts_enabled( $control ) && ( 'category' === $content_type ); }