selective_refresh ) ? 'postMessage' : 'refresh'; $wp_customize->add_panel( 'auramart_frontpage_sections', array( 'priority' => 32, 'title' => esc_html__( 'Frontpage Sections', 'auramart' ), ) ); /*========================================= Blog Section =========================================*/ $wp_customize->add_section( 'blog_setting', array( 'title' => esc_html__( 'Blog Section', 'auramart' ), 'priority' => 8, 'panel' => 'auramart_frontpage_sections', ) ); /*========================================= Setting =========================================*/ $wp_customize->add_setting( 'blog_settings' ,array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'auramart_sanitize_text', 'priority' => 1, ) ); $wp_customize->add_control( 'blog_settings', array( 'type' => 'hidden', 'label' => __('Settings','auramart'), 'section' => 'blog_setting', ) ); // Hide / Show $wp_customize->add_setting( 'blog_hide_show' ,array( 'default' => '1', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'auramart_sanitize_checkbox', 'priority' => 2, ) ); $wp_customize->add_control( 'blog_hide_show', array( 'type' => 'checkbox', 'label' => __('Hide / Show','auramart'), 'section' => 'blog_setting', ) ); /*========================================= Header =========================================*/ $wp_customize->add_setting( 'blog_header' ,array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'auramart_sanitize_text', 'priority' => 1, ) ); $wp_customize->add_control( 'blog_header', array( 'type' => 'hidden', 'label' => __('Header','auramart'), 'section' => 'blog_setting', ) ); // Title // $wp_customize->add_setting( 'blog_ttl', array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'auramart_sanitize_html', 'transport' => $selective_refresh, 'priority' => 2, ) ); $wp_customize->add_control( 'blog_ttl', array( 'label' => __('Title','auramart'), 'section' => 'blog_setting', 'type' => 'text', ) ); /*========================================= Content =========================================*/ $wp_customize->add_setting( 'blog_content' ,array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'auramart_sanitize_text', 'priority' => 5, ) ); $wp_customize->add_control( 'blog_content', array( 'type' => 'hidden', 'label' => __('Content','auramart'), 'section' => 'blog_setting', ) ); // Hide / Show $wp_customize->add_setting( 'blog_tab_hs' ,array( 'default' => '1', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'auramart_sanitize_checkbox', 'priority' => 5, ) ); $wp_customize->add_control( 'blog_tab_hs', array( 'type' => 'checkbox', 'label' => __('Hide / Show Tab','auramart'), 'section' => 'blog_setting', ) ); } add_action( 'customize_register', 'auramart_blog_setting' ); // selective refresh function auramart_blog_partials( $wp_customize ){ // blog_ttl $wp_customize->selective_refresh->add_partial( 'blog_ttl', array( 'selector' => '.post-home .heading-default h5', 'settings' => 'blog_ttl', 'render_callback' => 'auramart_blog_ttl_render_callback', ) ); } add_action( 'customize_register', 'auramart_blog_partials' ); // blog_ttl function auramart_blog_ttl_render_callback() { return get_theme_mod( 'blog_ttl' ); }