add_panel( 'blogzine_footer_layout', array( 'priority' => 20, 'capability' => 'edit_theme_options', 'title' => __( 'Footer Layout Options', 'blogzine' ), 'description' => __( 'Footer Layout Options', 'blogzine' ), ) ); $wp_customize->add_section( 'blogzine_footer_layout_section', array( 'capability' => 'edit_theme_options', 'priority' => 10, 'title' => __( 'Select from 4 Different Footer Layout', 'blogzine' ), 'description' => __( 'Select Footer and Check Result Live in Customizer', 'blogzine' ), 'panel' => 'blogzine_footer_layout' ) ); //Footer Layout Options $wp_customize->add_setting( 'blogzine_footer_layout_options', array( 'capability' => 'edit_theme_options', 'default' => 1, 'sanitize_callback' => 'blogzine_sanitize_select' ) ); $wp_customize->add_control( 'blogzine_footer_layout_options', array( 'label' => __( 'Select Footer Layout', 'blogzine' ), 'section' => 'blogzine_footer_layout_section', 'type' => 'radio', 'priority' => 10, 'settings' => 'blogzine_footer_layout_options', 'choices' => array( '1' => __( 'Footer One','blogzine' ), '2' => __( 'Footer Two' ,'blogzine'), '3' => __( 'Footer Three' ,'blogzine'), '4' => __( 'Footer Four','blogzine' ), ), ) ); $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', ) );