add_section( 'bike_workshop_footer_options', array( 'panel' => 'bike_workshop_theme_options', 'title' => esc_html__( 'Footer Options', 'bike-workshop' ), ) ); // Add Separator Custom Control $wp_customize->add_setting( 'bike_workshop_footer_separators', array( 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new Bike_Workshop_Separator_Custom_Control( $wp_customize, 'bike_workshop_footer_separators', array( 'label' => __( 'Footer Settings', 'bike-workshop' ), 'section' => 'bike_workshop_footer_options', 'settings' => 'bike_workshop_footer_separators', ))); // Footer Section - Enable Section. $wp_customize->add_setting( 'bike_workshop_enable_footer_section', array( 'default' => true, 'sanitize_callback' => 'bike_workshop_sanitize_switch', ) ); $wp_customize->add_control( new Bike_Workshop_Toggle_Switch_Custom_Control( $wp_customize, 'bike_workshop_enable_footer_section', array( 'label' => esc_html__( 'Show / Hide Footer', 'bike-workshop' ), 'section' => 'bike_workshop_footer_options', 'settings' => 'bike_workshop_enable_footer_section', ) ) ); // column // $wp_customize->add_setting( 'bike_workshop_footer_widget_column', array( 'default' => '4', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bike_workshop_sanitize_select', ) ); $wp_customize->add_control( 'bike_workshop_footer_widget_column', array( 'label' => __('Select Footer Widget Column','bike-workshop'), 'description' => __('Note: Default footer widgets are shown. Add your preferred widgets in (Appearance > Widgets > Footer) to see changes.', 'bike-workshop'), 'section' => 'bike_workshop_footer_options', 'type' => 'select', 'choices' => array( '' => __( 'None', 'bike-workshop' ), '1' => __( '1 Column', 'bike-workshop' ), '2' => __( '2 Column', 'bike-workshop' ), '3' => __( '3 Column', 'bike-workshop' ), '4' => __( '4 Column', 'bike-workshop' ) ) ) ); // Image // $wp_customize->add_setting('bike_workshop_footer_background_color_setting', array( 'default' => '#1f1f1f', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'bike_workshop_footer_background_color_setting', array( 'label' => __('Footer Background Color', 'bike-workshop'), 'section' => 'bike_workshop_footer_options', ))); // Footer Background Image Setting $wp_customize->add_setting('bike_workshop_footer_background_image_setting', array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control(new WP_Customize_Image_Control($wp_customize, 'bike_workshop_footer_background_image_setting', array( 'label' => __('Footer Background Image', 'bike-workshop'), 'section' => 'bike_workshop_footer_options', ))); // Footer Background Attachment $wp_customize->add_setting( 'bike_workshop_footer_image_attachment_setting', array( 'default'=> 'scroll', 'sanitize_callback' => 'bike_workshop_sanitize_choices' ) ); $wp_customize->add_control( 'bike_workshop_footer_image_attachment_setting', array( 'type' => 'select', 'label' => __('Footer Background Attatchment','bike-workshop'), 'choices' => array( 'fixed' => __('fixed','bike-workshop'), 'scroll' => __('scroll','bike-workshop'), ), 'section'=> 'bike_workshop_footer_options', ) ); $wp_customize->add_setting('footer_text_transform', array( 'default' => 'none', 'sanitize_callback' => 'sanitize_text_field', )); // Add Footer Heading Text Transform Control $wp_customize->add_control('footer_text_transform', array( 'label' => __('Footer Heading Text Transform', 'bike-workshop'), 'section' => 'bike_workshop_footer_options', 'settings' => 'footer_text_transform', 'type' => 'select', 'choices' => array( 'none' => __('None', 'bike-workshop'), 'capitalize' => __('Capitalize', 'bike-workshop'), 'uppercase' => __('Uppercase', 'bike-workshop'), 'lowercase' => __('Lowercase', 'bike-workshop'), ), )); $wp_customize->add_setting( 'bike_workshop_footer_copyright_text', array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', 'transport' => 'refresh', ) ); $wp_customize->add_control( 'bike_workshop_footer_copyright_text', array( 'label' => esc_html__( 'Copyright Text', 'bike-workshop' ), 'section' => 'bike_workshop_footer_options', 'settings' => 'bike_workshop_footer_copyright_text', 'type' => 'textarea', ) ); //Copyright Alignment $wp_customize->add_setting( 'bike_workshop_footer_bottom_align', array( 'default' => 'center', 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control( 'bike_workshop_footer_bottom_align', array( 'label' => __('Copyright Alignment ','bike-workshop'), 'section' => 'bike_workshop_footer_options', 'type' => 'select', 'choices' => array( 'left' => __('Left','bike-workshop'), 'right' => __('Right','bike-workshop'), 'center' => __('Center','bike-workshop'), ), ) ); // Add Separator Custom Control $wp_customize->add_setting( 'bike_workshop_scroll_separators', array( 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new Bike_Workshop_Separator_Custom_Control( $wp_customize, 'bike_workshop_scroll_separators', array( 'label' => __( 'Scroll Top Settings', 'bike-workshop' ), 'section' => 'bike_workshop_footer_options', 'settings' => 'bike_workshop_scroll_separators', ))); // Footer Options - Scroll Top. $wp_customize->add_setting( 'bike_workshop_scroll_top', array( 'sanitize_callback' => 'bike_workshop_sanitize_switch', 'default' => true, ) ); $wp_customize->add_control( new Bike_Workshop_Toggle_Switch_Custom_Control( $wp_customize, 'bike_workshop_scroll_top', array( 'label' => esc_html__( 'Enable Scroll Top Button', 'bike-workshop' ), 'section' => 'bike_workshop_footer_options', ) ) ); // icon // $wp_customize->add_setting( 'bike_workshop_scroll_btn_icon', array( 'default' => 'fas fa-chevron-up', 'sanitize_callback' => 'sanitize_text_field', 'capability' => 'edit_theme_options', ) ); $wp_customize->add_control(new Bike_Workshop_Change_Icon_Control($wp_customize, 'bike_workshop_scroll_btn_icon', array( 'label' => __('Scroll Top Icon','bike-workshop'), 'section' => 'bike_workshop_footer_options', 'iconset' => 'fa', )) ); $wp_customize->add_setting( 'bike_workshop_scroll_top_position', array( 'default' => 'bottom-right', 'sanitize_callback' => 'bike_workshop_sanitize_scroll_top_position', ) ); // Add control for Scroll Top Button Position $wp_customize->add_control( 'bike_workshop_scroll_top_position', array( 'label' => __( 'Scroll Top Button Position', 'bike-workshop' ), 'section' => 'bike_workshop_footer_options', 'settings' => 'bike_workshop_scroll_top_position', 'type' => 'select', 'choices' => array( 'bottom-right' => __( 'Bottom Right', 'bike-workshop' ), 'bottom-left' => __( 'Bottom Left', 'bike-workshop' ), 'bottom-center'=> __( 'Bottom Center', 'bike-workshop' ), ), ) ); $wp_customize->add_setting( 'bike_workshop_scroll_top_shape', array( 'default' => 'box', 'sanitize_callback' => 'sanitize_text_field', )); $wp_customize->add_control( 'bike_workshop_scroll_top_shape', array( 'label' => __( 'Scroll to Top Button Shape', 'bike-workshop' ), 'section' => 'bike_workshop_footer_options', 'settings' => 'bike_workshop_scroll_top_shape', 'type' => 'radio', 'choices' => array( 'box' => __( 'Box', 'bike-workshop' ), 'curved-box' => __( 'Curved Box', 'bike-workshop' ), 'circle' => __( 'Circle', 'bike-workshop' ), ), ));