add_panel( 'blogzine_footer_layout', array( 'priority' => 20, 'capability' => 'edit_theme_options', 'title' => __( 'Footer Social Option', 'blogzine' ), 'description' => __( 'Footer Social Options', 'blogzine' ), ) ); $wp_customize->add_section( 'blogzine_footer_layout_section', array( 'capability' => 'edit_theme_options', 'priority' => 10, 'title' => __( 'Enable/Disable Social Link in Footer', 'blogzine' ), 'description' => __( 'Enable/Disable Social Link in Footer', 'blogzine' ), 'panel' => 'blogzine_footer_layout' ) ); $wp_customize->add_setting( 'blogzine_footer_social_enable', array( 'capability' => 'edit_theme_options', 'default' => 0, 'sanitize_callback' => 'blogzine_sanitize_checkbox' ) ); $wp_customize->add_control( 'blogzine_footer_social_enable', array( 'label' => __( 'Enable/Disable Footer Social Links', 'blogzine' ), 'section' => 'blogzine_footer_layout_section', 'type' => 'checkbox', 'priority' => 10, 'settings' => 'blogzine_footer_social_enable', ) );