add_section( 'aster_vlogger_footer_options', array( 'panel' => 'aster_vlogger_theme_options', 'title' => esc_html__( 'Footer Options', 'aster-vlogger' ), ) ); // Add Separator Custom Control $wp_customize->add_setting( 'aster_vlogger_footer_separators', array( 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new Aster_Vlogger_Separator_Custom_Control( $wp_customize, 'aster_vlogger_footer_separators', array( 'label' => __( 'Footer Settings', 'aster-vlogger' ), 'section' => 'aster_vlogger_footer_options', 'settings' => 'aster_vlogger_footer_separators', ))); $wp_customize->add_setting( 'aster_vlogger_footer_widget_column', array( 'default' => '4', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'aster_vlogger_sanitize_select', ) ); $wp_customize->add_control( 'aster_vlogger_footer_widget_column', array( 'label' => __('Select Widget Column','aster-vlogger'), 'section' => 'aster_vlogger_footer_options', 'type' => 'select', 'choices' => array( '' => __( 'None', 'aster-vlogger' ), '1' => __( '1 Column', 'aster-vlogger' ), '2' => __( '2 Column', 'aster-vlogger' ), '3' => __( '3 Column', 'aster-vlogger' ), '4' => __( '4 Column', 'aster-vlogger' ) ) ) ); // BG Color // $wp_customize->add_setting('footer_background_color_setting', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'footer_background_color_setting', array( 'label' => __('Footer Background Color', 'aster-vlogger'), 'section' => 'aster_vlogger_footer_options', ))); // Footer Background Image Setting $wp_customize->add_setting('footer_background_image_setting', array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control(new WP_Customize_Image_Control($wp_customize, 'footer_background_image_setting', array( 'label' => __('Footer Background Image', 'aster-vlogger'), 'section' => 'aster_vlogger_footer_options', ))); $wp_customize->add_setting('footer_text_transform', array( 'default' => 'none', 'sanitize_callback' => 'sanitize_text_field', )); // Add Footer Text Transform Control $wp_customize->add_control('footer_text_transform', array( 'label' => __('Footer Text Transform', 'aster-vlogger'), 'section' => 'aster_vlogger_footer_options', 'settings' => 'footer_text_transform', 'type' => 'select', 'choices' => array( 'none' => __('None', 'aster-vlogger'), 'capitalize' => __('Capitalize', 'aster-vlogger'), 'uppercase' => __('Uppercase', 'aster-vlogger'), 'lowercase' => __('Lowercase', 'aster-vlogger'), ), )); $wp_customize->add_setting( 'aster_vlogger_footer_copyright_text', array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', 'transport' => 'refresh', ) ); $wp_customize->add_control( 'aster_vlogger_footer_copyright_text', array( 'label' => esc_html__( 'Copyright Text', 'aster-vlogger' ), 'section' => 'aster_vlogger_footer_options', 'settings' => 'aster_vlogger_footer_copyright_text', 'type' => 'textarea', ) ); // Add Separator Custom Control $wp_customize->add_setting( 'aster_vlogger_scroll_separators', array( 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new Aster_Vlogger_Separator_Custom_Control( $wp_customize, 'aster_vlogger_scroll_separators', array( 'label' => __( 'Scroll Top Settings', 'aster-vlogger' ), 'section' => 'aster_vlogger_footer_options', 'settings' => 'aster_vlogger_scroll_separators', ))); // Footer Options - Scroll Top. $wp_customize->add_setting( 'aster_vlogger_scroll_top', array( 'sanitize_callback' => 'aster_vlogger_sanitize_switch', 'default' => true, ) ); // Footer Options - Scroll Top. $wp_customize->add_setting( 'aster_vlogger_scroll_top', array( 'sanitize_callback' => 'aster_vlogger_sanitize_switch', 'default' => true, ) ); $wp_customize->add_control( new Aster_Vlogger_Toggle_Switch_Custom_Control( $wp_customize, 'aster_vlogger_scroll_top', array( 'label' => esc_html__( 'Enable Scroll Top Button', 'aster-vlogger' ), 'section' => 'aster_vlogger_footer_options', ) ) ); // icon // $wp_customize->add_setting( 'aster_vlogger_scroll_btn_icon', array( 'default' => 'fas fa-chevron-up', 'sanitize_callback' => 'sanitize_text_field', 'capability' => 'edit_theme_options', ) ); $wp_customize->add_control(new Aster_Vlogger_Change_Icon_Control($wp_customize, 'aster_vlogger_scroll_btn_icon', array( 'label' => __('Scroll Top Icon','aster-vlogger'), 'section' => 'aster_vlogger_footer_options', 'iconset' => 'fa', )) ); $wp_customize->add_setting( 'aster_vlogger_scroll_top_position', array( 'default' => 'bottom-right', 'sanitize_callback' => 'aster_vlogger_sanitize_scroll_top_position', ) ); // Add control for Scroll Top Button Position $wp_customize->add_control( 'aster_vlogger_scroll_top_position', array( 'label' => __( 'Scroll Top Button Position', 'aster-vlogger' ), 'section' => 'aster_vlogger_footer_options', 'settings' => 'aster_vlogger_scroll_top_position', 'type' => 'select', 'choices' => array( 'bottom-right' => __( 'Bottom Right', 'aster-vlogger' ), 'bottom-left' => __( 'Bottom Left', 'aster-vlogger' ), 'bottom-center'=> __( 'Bottom Center', 'aster-vlogger' ), ), ) ); $wp_customize->add_setting( 'aster_vlogger_scroll_top_shape', array( 'default' => 'box', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'aster_vlogger_scroll_top_shape', array( 'label' => __( 'Scroll to Top Button Shape', 'aster-vlogger' ), 'section' => 'aster_vlogger_footer_options', 'settings' => 'aster_vlogger_scroll_top_shape', 'type' => 'radio', 'choices' => array( 'box' => __( 'Box', 'aster-vlogger' ), 'curved-box' => __( 'Curved Box', 'aster-vlogger' ), 'circle' => __( 'Circle', 'aster-vlogger' ), ), ) );