add_section( 'business_article_ship_general_settings', array ( 'priority' => 25, 'capability' => 'edit_theme_options', 'title' => esc_html__( 'General Settings', 'business-article-ship' ) ) ); // Add general Panel for preloader and scrolltop $wp_customize->add_panel( 'business_article_ship_general_settings_panel', array( 'priority' => 30, 'capability' => 'edit_theme_options', 'title' => esc_html__( 'General Settings', 'business-article-ship' ), ) ); // Section preloader $wp_customize->add_section( 'business_article_ship_prelodr_settings', array( 'priority' => 25, 'capability' => 'edit_theme_options', 'title' => esc_html__( 'Preloader', 'business-article-ship' ), 'panel' => 'business_article_ship_general_settings_panel', ) ); // Title label $wp_customize->add_setting( 'business_article_ship_preloader_settings', array( 'sanitize_callback' => 'business_article_ship_sanitize_title', ) ); $wp_customize->add_control( new Business_Article_Ship_Title_Info_Control( $wp_customize, 'business_article_ship_preloader_settings', array( 'label' => esc_html__( 'Preloader Settings', 'business-article-ship' ), 'section' => 'business_article_ship_prelodr_settings', 'type' => 'business-article-ship-title', 'settings' => 'business_article_ship_preloader_settings', ) )); // Add an option to enable the preloader $wp_customize->add_setting( 'business_article_ship_enable_preloader', array( 'default' => false, 'type' => 'theme_mod', 'sanitize_callback' => 'business_article_ship_sanitize_checkbox', ) ); $wp_customize->add_control( new Business_Article_Ship_Toggle_Control( $wp_customize, 'business_article_ship_enable_preloader', array( 'label' => esc_html__( 'Show Preloader', 'business-article-ship' ), 'section' => 'business_article_ship_prelodr_settings', 'type' => 'business-article-ship-toggle', 'settings' => 'business_article_ship_enable_preloader', ) )); // Section Body Typography $wp_customize->add_section( 'business_article_ship_scrol_settings', array( 'priority' => 30, 'capability' => 'edit_theme_options', 'title' => esc_html__( 'Scroll Top', 'business-article-ship' ), 'panel' => 'business_article_ship_general_settings_panel', ) ); // Title label $wp_customize->add_setting( 'business_article_ship_scroll_top_settings', array( 'sanitize_callback' => 'business_article_ship_sanitize_title', ) ); $wp_customize->add_control( new Business_Article_Ship_Title_Info_Control( $wp_customize, 'business_article_ship_scroll_top_settings', array( 'label' => esc_html__( 'Scroll Top Settings', 'business-article-ship' ), 'section' => 'business_article_ship_scrol_settings', 'type' => 'business-article-ship-title', 'settings' => 'business_article_ship_scroll_top_settings', ) )); // Add an option to enable the scrolltop $wp_customize->add_setting( 'business_article_ship_enable_scrolltop', array( 'default' => true, 'type' => 'theme_mod', 'sanitize_callback' => 'business_article_ship_sanitize_checkbox', ) ); $wp_customize->add_control( new Business_Article_Ship_Toggle_Control( $wp_customize, 'business_article_ship_enable_scrolltop', array( 'label' => esc_html__( 'Show Scroll Top', 'business-article-ship' ), 'section' => 'business_article_ship_scrol_settings', 'type' => 'business-article-ship-toggle', 'settings' => 'business_article_ship_enable_scrolltop', ) )); $wp_customize->add_section( 'business_article_ship_button_settings', array( 'priority' => 25, 'capability' => 'edit_theme_options', 'title' => esc_html__( 'Buttons', 'business-article-ship' ), 'panel' => 'business_article_ship_general_settings_panel', ) ); // Border Radius Setting $wp_customize->add_setting( 'business_article_ship_button_border_radius', array( 'default' => '5px', 'sanitize_callback' => 'sanitize_text_field', 'transport' => 'refresh', ) ); $wp_customize->add_control( 'business_article_ship_button_border_radius', array( 'type' => 'text', 'label' => esc_html__( 'Button Border Radius (e.g. 4px, 50%)', 'business-article-ship' ), 'section' => 'business_article_ship_button_settings', ) ); // Button Padding Setting $wp_customize->add_setting( 'business_article_ship_button_padding', array( 'default' => '8px 25px', 'sanitize_callback' => 'sanitize_text_field', 'transport' => 'refresh', ) ); $wp_customize->add_control( 'business_article_ship_button_padding', array( 'type' => 'text', 'label' => esc_html__( 'Button Padding (e.g. 10px 20px)', 'business-article-ship' ), 'section' => 'business_article_ship_button_settings', ) ); } endif; add_action( 'customize_register', 'business_article_ship_customizer_general_setting_register' );