add_section( 'footer_widget_section', array( 'title' => __('Footer Widget Options', 'bloglex'), 'panel' => 'footer_options_panel', ) ); /*Enable Footer Nav*/ $wp_customize->add_setting( 'bloglex_options[enable_footer_widget]', array( 'default' => $bloglex_default['enable_footer_widget'], 'sanitize_callback' => 'bloglex_sanitize_checkbox', ) ); $wp_customize->add_control( 'bloglex_options[enable_footer_widget]', array( 'label' => __( 'Show Footer widgetarea', 'bloglex' ), 'section' => 'footer_widget_section', 'type' => 'checkbox', ) ); // Option to choose footer column layout. $wp_customize->add_setting( 'bloglex_options[footer_column_layout]', array( 'default' => $bloglex_default['footer_column_layout'], 'sanitize_callback' => 'bloglex_sanitize_radio', ) ); $wp_customize->add_control( new Bloglex_Custom_Radio_Image_Control( $wp_customize, 'bloglex_options[footer_column_layout]', array( 'label' => __( 'Footer Column Layout', 'bloglex' ), 'description' => __( 'Some footer widgetareas will not be used based on the footer column layout chosen. Also make sure to insert at least one widget on the respective widgetarea for it to display.', 'bloglex' ), 'section' => 'footer_widget_section', 'choices' => bloglex_get_footer_layouts(), 'priority' => 40, ) ) );