add_section( 'blog_rider_footer_section', array( 'title' => esc_html__( 'Footer', 'blog-rider' ), 'priority' => 106, // 'panel' => 'blog_rider_general_panel', ) ); // Footer social menu enable setting $wp_customize->add_setting( 'blog_rider_enable_footer_social_menu', array( 'sanitize_callback' => 'blog_rider_sanitize_checkbox', 'default' => true, ) ); $wp_customize->add_control( 'blog_rider_enable_footer_social_menu', array( 'section' => 'blog_rider_footer_section', 'label' => esc_html__( 'Enable social menu.', 'blog-rider' ), 'type' => 'checkbox', ) ); // Footer copyright setting $wp_customize->add_setting( 'blog_rider_copyright_txt', array( 'sanitize_callback' => 'blog_rider_sanitize_html', 'default' => $default['blog_rider_copyright_txt'], 'transport' => 'postMessage', ) ); $wp_customize->add_control( 'blog_rider_copyright_txt', array( 'section' => 'blog_rider_footer_section', 'label' => esc_html__( 'Copyright text:', 'blog-rider' ), 'type' => 'textarea', 'active_callback' => 'blog_rider_if_footer_text_enable', ) ); $wp_customize->selective_refresh->add_partial( 'blog_rider_copyright_txt', array( 'selector' => '#colophon .site-info .footer-copyright', 'render_callback' => 'blog_rider_copyright_partial', ) ); ?>