setup_actions(); } return $instance; } /** * Constructor method. * * @since 1.0.0 * @access private * @return void */ private function __construct() {} /** * Sets up initial actions. * * @since 1.0.0 * @access private * @return void */ private function setup_actions() { // Register panels, sections, settings, controls, and partials. add_action( 'customize_register', array( $this, 'sections' ) ); // Register scripts and styles for the controls. add_action( 'customize_controls_enqueue_scripts', array( $this, 'enqueue_control_scripts' ), 0 ); } /** * Sets up the customizer sections. * * @since 1.0.0 * @access public * @param object $manager * @return void */ public function sections( $manager ) { // Load custom sections. load_template( trailingslashit( get_template_directory() ) . '/inc/section-pro.php' ); // Register custom section types. $manager->register_section_type( 'Cake_Bakery_Customize_Section_Pro' ); // Register sections. $manager->add_section( new Cake_Bakery_Customize_Section_Pro( $manager, 'example_1', array( 'priority' => 9, 'title' => esc_html__( 'Cake Bakery Pro', 'cake-bakery' ), 'pro_text' => esc_html__( 'Go Pro', 'cake-bakery' ), 'pro_url' => esc_url( 'https://www.logicalthemes.com/themes/cake-bakery-wordpress-theme/' ), ) ) ); } /** * Loads theme customizer CSS. * * @since 1.0.0 * @access public * @return void */ public function enqueue_control_scripts() { wp_enqueue_script( 'cake-bakery-customize-controls', trailingslashit( esc_url(get_template_directory_uri()) ) . '/assets/js/customize-controls.js', array( 'customize-controls' ) ); wp_enqueue_style( 'cake-bakery-customize-controls', trailingslashit( esc_url(get_template_directory_uri()) ) . '/assets/css/customize-controls.css' ); } } // Doing this customizer thang! Cake_Bakery_Customize::get_instance(); function cake_bakery_customize_register( $wp_customize ) { //add home page setting pannel $wp_customize->add_panel( 'cake_bakery_panel_id', array( 'priority' => 10, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => esc_html__( 'LT Settings', 'cake-bakery' ), ) ); //Layout Setting $wp_customize->add_section( 'cake_bakery_left_right' , array( 'title' => esc_html__( 'General Settings', 'cake-bakery' ), 'priority' => null, 'panel' => 'cake_bakery_panel_id' ) ); $wp_customize->add_setting('cake_bakery_theme_options',array( 'default' => 'One Column', 'sanitize_callback' => 'cake_bakery_sanitize_choices' )); $wp_customize->add_control('cake_bakery_theme_options',array( 'type' => 'radio', 'description' => __( 'Choose sidebar between different options', 'cake-bakery' ), 'label' => esc_html__( 'Post Sidebar Layout.', 'cake-bakery' ), 'section' => 'cake_bakery_left_right', 'choices' => array( 'One Column' => esc_html__('One Column ','cake-bakery'), 'Three Columns' => esc_html__('Three Columns','cake-bakery'), 'Four Columns' => esc_html__('Four Columns','cake-bakery'), 'Right Sidebar' => esc_html__('Right Sidebar','cake-bakery'), 'Left Sidebar' => esc_html__('Left Sidebar','cake-bakery'), 'Grid Layout' => esc_html__('Grid Layout','cake-bakery') ), )); $cake_bakery_font_array = array( '' =>'No Fonts', 'Abril Fatface' => 'Abril Fatface', 'Acme' =>'Acme', 'Anton' => 'Anton', 'Architects Daughter' =>'Architects Daughter', 'Arimo' => 'Arimo', 'Arsenal' =>'Arsenal', 'Arvo' =>'Arvo', 'Alegreya' =>'Alegreya', 'Alfa Slab One' =>'Alfa Slab One', 'Averia Serif Libre' =>'Averia Serif Libre', 'Bangers' =>'Bangers', 'Boogaloo' =>'Boogaloo', 'Bad Script' =>'Bad Script', 'Bitter' =>'Bitter', 'Bree Serif' =>'Bree Serif', 'BenchNine' =>'BenchNine', 'Cabin' =>'Cabin', 'Cardo' =>'Cardo', 'Courgette' =>'Courgette', 'Cherry Swash' =>'Cherry Swash', 'Cormorant Garamond' =>'Cormorant Garamond', 'Crimson Text' =>'Crimson Text', 'Cuprum' =>'Cuprum', 'Cookie' =>'Cookie', 'Chewy' =>'Chewy', 'Days One' =>'Days One', 'Dosis' =>'Dosis', 'Droid Sans' =>'Droid Sans', 'Economica' =>'Economica', 'Fredoka One' =>'Fredoka One', 'Fjalla One' =>'Fjalla One', 'Francois One' =>'Francois One', 'Frank Ruhl Libre' => 'Frank Ruhl Libre', 'Gloria Hallelujah' =>'Gloria Hallelujah', 'Great Vibes' =>'Great Vibes', 'Handlee' =>'Handlee', 'Hammersmith One' =>'Hammersmith One', 'Inconsolata' =>'Inconsolata', 'Indie Flower' =>'Indie Flower', 'IM Fell English SC' =>'IM Fell English SC', 'Julius Sans One' =>'Julius Sans One', 'Josefin Slab' =>'Josefin Slab', 'Josefin Sans' =>'Josefin Sans', 'Kanit' =>'Kanit', 'Lobster' =>'Lobster', 'Lato' => 'Lato', 'Lora' =>'Lora', 'Libre Baskerville' =>'Libre Baskerville', 'Lobster Two' => 'Lobster Two', 'Merriweather' =>'Merriweather', 'Monda' =>'Monda', 'Montserrat' =>'Montserrat', 'Muli' =>'Muli', 'Marck Script' =>'Marck Script', 'Noto Serif' =>'Noto Serif', 'Open Sans' =>'Open Sans', 'Overpass' => 'Overpass', 'Overpass Mono' =>'Overpass Mono', 'Oxygen' =>'Oxygen', 'Orbitron' =>'Orbitron', 'Patua One' =>'Patua One', 'Pacifico' =>'Pacifico', 'Padauk' =>'Padauk', 'Playball' =>'Playball', 'Playfair Display' =>'Playfair Display', 'PT Sans' =>'PT Sans', 'Philosopher' =>'Philosopher', 'Permanent Marker' =>'Permanent Marker', 'Poiret One' =>'Poiret One', 'Quicksand' =>'Quicksand', 'Quattrocento Sans' =>'Quattrocento Sans', 'Raleway' =>'Raleway', 'Rubik' =>'Rubik', 'Rokkitt' =>'Rokkitt', 'Russo One' => 'Russo One', 'Righteous' =>'Righteous', 'Slabo' =>'Slabo', 'Source Sans Pro' =>'Source Sans Pro', 'Shadows Into Light Two' =>'Shadows Into Light Two', 'Shadows Into Light' => 'Shadows Into Light', 'Sacramento' =>'Sacramento', 'Shrikhand' =>'Shrikhand', 'Tangerine' => 'Tangerine', 'Ubuntu' =>'Ubuntu', 'VT323' =>'VT323', 'Varela Round' =>'Varela Round', 'Vampiro One' =>'Vampiro One', 'Vollkorn' => 'Vollkorn', 'Volkhov' =>'Volkhov', 'Yanone Kaffeesatz' =>'Yanone Kaffeesatz' ); //Typography $wp_customize->add_section( 'cake_bakery_typography', array( 'title' => __( 'Typography', 'cake-bakery' ), 'priority' => null, 'panel' => 'cake_bakery_panel_id' ) ); // This is Paragraph Color picker setting $wp_customize->add_setting( 'cake_bakery_paragraph_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_paragraph_color', array( 'label' => __('Paragraph Color', 'cake-bakery'), 'section' => 'cake_bakery_typography', 'settings' => 'cake_bakery_paragraph_color', ))); //This is Paragraph FontFamily picker setting $wp_customize->add_setting('cake_bakery_paragraph_font_family',array( 'default' => '', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'cake_bakery_sanitize_choices' )); $wp_customize->add_control( 'cake_bakery_paragraph_font_family', array( 'section' => 'cake_bakery_typography', 'label' => __( 'Paragraph Fonts','cake-bakery'), 'type' => 'select', 'choices' => $cake_bakery_font_array, )); $wp_customize->add_setting('cake_bakery_paragraph_font_size',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('cake_bakery_paragraph_font_size',array( 'label' => __('Paragraph Font Size','cake-bakery'), 'section' => 'cake_bakery_typography', 'setting' => 'cake_bakery_paragraph_font_size', 'type' => 'text' )); // This is "a" Tag Color picker setting $wp_customize->add_setting( 'cake_bakery_atag_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_atag_color', array( 'label' => __('"a" Tag Color', 'cake-bakery'), 'section' => 'cake_bakery_typography', 'settings' => 'cake_bakery_atag_color', ))); //This is "a" Tag FontFamily picker setting $wp_customize->add_setting('cake_bakery_atag_font_family',array( 'default' => '', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'cake_bakery_sanitize_choices' )); $wp_customize->add_control( 'cake_bakery_atag_font_family', array( 'section' => 'cake_bakery_typography', 'label' => __( '"a" Tag Fonts','cake-bakery'), 'type' => 'select', 'choices' => $cake_bakery_font_array, )); // This is "a" Tag Color picker setting $wp_customize->add_setting( 'cake_bakery_li_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_li_color', array( 'label' => __('"li" Tag Color', 'cake-bakery'), 'section' => 'cake_bakery_typography', 'settings' => 'cake_bakery_li_color', ))); //This is "li" Tag FontFamily picker setting $wp_customize->add_setting('cake_bakery_li_font_family',array( 'default' => '', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'cake_bakery_sanitize_choices' )); $wp_customize->add_control( 'cake_bakery_li_font_family', array( 'section' => 'cake_bakery_typography', 'label' => __( '"li" Tag Fonts','cake-bakery'), 'type' => 'select', 'choices' => $cake_bakery_font_array, )); // This is H1 Color picker setting $wp_customize->add_setting( 'cake_bakery_h1_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_h1_color', array( 'label' => __('H1 Color', 'cake-bakery'), 'section' => 'cake_bakery_typography', 'settings' => 'cake_bakery_h1_color', ))); //This is H1 FontFamily picker setting $wp_customize->add_setting('cake_bakery_h1_font_family',array( 'default' => '', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'cake_bakery_sanitize_choices' )); $wp_customize->add_control( 'cake_bakery_h1_font_family', array( 'section' => 'cake_bakery_typography', 'label' => __( 'H1 Fonts','cake-bakery'), 'type' => 'select', 'choices' => $cake_bakery_font_array, )); //This is H1 FontSize setting $wp_customize->add_setting('cake_bakery_h1_font_size',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('cake_bakery_h1_font_size',array( 'label' => __('H1 Font Size','cake-bakery'), 'section' => 'cake_bakery_typography', 'setting' => 'cake_bakery_h1_font_size', 'type' => 'text' )); // This is H2 Color picker setting $wp_customize->add_setting( 'cake_bakery_h2_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_h2_color', array( 'label' => __('H2 Color', 'cake-bakery'), 'section' => 'cake_bakery_typography', 'settings' => 'cake_bakery_h2_color', ))); //This is H2 FontFamily picker setting $wp_customize->add_setting('cake_bakery_h2_font_family',array( 'default' => '', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'cake_bakery_sanitize_choices' )); $wp_customize->add_control( 'cake_bakery_h2_font_family', array( 'section' => 'cake_bakery_typography', 'label' => __( 'H2 Fonts','cake-bakery'), 'type' => 'select', 'choices' => $cake_bakery_font_array, )); //This is H2 FontSize setting $wp_customize->add_setting('cake_bakery_h2_font_size',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('cake_bakery_h2_font_size',array( 'label' => __('H2 Font Size','cake-bakery'), 'section' => 'cake_bakery_typography', 'setting' => 'cake_bakery_h2_font_size', 'type' => 'text' )); // This is H3 Color picker setting $wp_customize->add_setting( 'cake_bakery_h3_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_h3_color', array( 'label' => __('H3 Color', 'cake-bakery'), 'section' => 'cake_bakery_typography', 'settings' => 'cake_bakery_h3_color', ))); //This is H3 FontFamily picker setting $wp_customize->add_setting('cake_bakery_h3_font_family',array( 'default' => '', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'cake_bakery_sanitize_choices' )); $wp_customize->add_control( 'cake_bakery_h3_font_family', array( 'section' => 'cake_bakery_typography', 'label' => __( 'H3 Fonts','cake-bakery'), 'type' => 'select', 'choices' => $cake_bakery_font_array, )); //This is H3 FontSize setting $wp_customize->add_setting('cake_bakery_h3_font_size',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('cake_bakery_h3_font_size',array( 'label' => __('H3 Font Size','cake-bakery'), 'section' => 'cake_bakery_typography', 'setting' => 'cake_bakery_h3_font_size', 'type' => 'text' )); // This is H4 Color picker setting $wp_customize->add_setting( 'cake_bakery_h4_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_h4_color', array( 'label' => __('H4 Color', 'cake-bakery'), 'section' => 'cake_bakery_typography', 'settings' => 'cake_bakery_h4_color', ))); //This is H4 FontFamily picker setting $wp_customize->add_setting('cake_bakery_h4_font_family',array( 'default' => '', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'cake_bakery_sanitize_choices' )); $wp_customize->add_control( 'cake_bakery_h4_font_family', array( 'section' => 'cake_bakery_typography', 'label' => __( 'H4 Fonts','cake-bakery'), 'type' => 'select', 'choices' => $cake_bakery_font_array, )); //This is H4 FontSize setting $wp_customize->add_setting('cake_bakery_h4_font_size',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('cake_bakery_h4_font_size',array( 'label' => __('H4 Font Size','cake-bakery'), 'section' => 'cake_bakery_typography', 'setting' => 'cake_bakery_h4_font_size', 'type' => 'text' )); // This is H5 Color picker setting $wp_customize->add_setting( 'cake_bakery_h5_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_h5_color', array( 'label' => __('H5 Color', 'cake-bakery'), 'section' => 'cake_bakery_typography', 'settings' => 'cake_bakery_h5_color', ))); //This is H5 FontFamily picker setting $wp_customize->add_setting('cake_bakery_h5_font_family',array( 'default' => '', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'cake_bakery_sanitize_choices' )); $wp_customize->add_control( 'cake_bakery_h5_font_family', array( 'section' => 'cake_bakery_typography', 'label' => __( 'H5 Fonts','cake-bakery'), 'type' => 'select', 'choices' => $cake_bakery_font_array, )); //This is H5 FontSize setting $wp_customize->add_setting('cake_bakery_h5_font_size',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('cake_bakery_h5_font_size',array( 'label' => __('H5 Font Size','cake-bakery'), 'section' => 'cake_bakery_typography', 'setting' => 'cake_bakery_h5_font_size', 'type' => 'text' )); // This is H6 Color picker setting $wp_customize->add_setting( 'cake_bakery_h6_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_h6_color', array( 'label' => __('H6 Color', 'cake-bakery'), 'section' => 'cake_bakery_typography', 'settings' => 'cake_bakery_h6_color', ))); //This is H6 FontFamily picker setting $wp_customize->add_setting('cake_bakery_h6_font_family',array( 'default' => '', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'cake_bakery_sanitize_choices' )); $wp_customize->add_control( 'cake_bakery_h6_font_family', array( 'section' => 'cake_bakery_typography', 'label' => __( 'H6 Fonts','cake-bakery'), 'type' => 'select', 'choices' => $cake_bakery_font_array, )); //This is H6 FontSize setting $wp_customize->add_setting('cake_bakery_h6_font_size',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('cake_bakery_h6_font_size',array( 'label' => __('H6 Font Size','cake-bakery'), 'section' => 'cake_bakery_typography', 'setting' => 'cake_bakery_h6_font_size', 'type' => 'text' )); //Topbar section $wp_customize->add_section('cake_bakery_topbar',array( 'title' => esc_html__('Topbar','cake-bakery'), 'priority' => null, 'panel' => 'cake_bakery_panel_id', )); $wp_customize->add_setting( 'cake_bakery_sticky_header',array( 'default' => false, 'sanitize_callback' => 'cake_bakery_sanitize_checkbox' ) ); $wp_customize->add_control('cake_bakery_sticky_header',array( 'type' => 'checkbox', 'description' => __( 'Click on the checkbox to enable sticky header.', 'cake-bakery' ), 'label' => __( 'Sticky Header','cake-bakery' ), 'section' => 'cake_bakery_topbar' )); $wp_customize->add_setting('cake_bakery_btn_link',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('cake_bakery_btn_link',array( 'label' => __('Button Link','cake-bakery'), 'section' => 'cake_bakery_topbar', 'type' => 'text' )); //Menu Settings $wp_customize->add_section( 'cake_bakery_menu_settings' , array( 'title' => esc_html__( 'Menu Settings', 'cake-bakery' ), 'priority' => null, 'panel' => 'cake_bakery_panel_id' ) ); $wp_customize->add_setting( 'cake_bakery_menu_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_menu_color', array( 'label' => __('Menu Color', 'cake-bakery'), 'section' => 'cake_bakery_menu_settings', 'settings' => 'cake_bakery_menu_color', ))); $wp_customize->add_setting( 'cake_bakery_menu_hover_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_menu_hover_color', array( 'label' => __('Menu Hover Color', 'cake-bakery'), 'section' => 'cake_bakery_menu_settings', 'settings' => 'cake_bakery_menu_hover_color', ))); $wp_customize->add_setting( 'cake_bakery_submenu_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_submenu_color', array( 'label' => __('Submenu Color', 'cake-bakery'), 'section' => 'cake_bakery_menu_settings', 'settings' => 'cake_bakery_submenu_color', ))); $wp_customize->add_setting( 'cake_bakery_submenu_hover_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_submenu_hover_color', array( 'label' => __('Submenu Hover Color', 'cake-bakery'), 'section' => 'cake_bakery_menu_settings', 'settings' => 'cake_bakery_submenu_hover_color', ))); //home page slider $wp_customize->add_section( 'cake_bakery_slidersettings' , array( 'title' => esc_html__( 'Slider Settings', 'cake-bakery' ), 'priority' => null, 'panel' => 'cake_bakery_panel_id' ) ); $wp_customize->add_setting('cake_bakery_slider_hide_show',array( 'default' => false, 'sanitize_callback' => 'cake_bakery_sanitize_checkbox' )); $wp_customize->add_control('cake_bakery_slider_hide_show',array( 'type' => 'checkbox', 'description' => __( 'Click on the checkbox to enable slider.', 'cake-bakery' ), 'label' => esc_html__('Show / Hide slider','cake-bakery'), 'section' => 'cake_bakery_slidersettings', )); for ( $count = 1; $count <= 4; $count++ ) { $wp_customize->add_setting( 'cake_bakery_slider_page' . $count, array( 'default' => '', 'sanitize_callback' => 'cake_bakery_sanitize_dropdown_pages' ) ); $wp_customize->add_control( 'cake_bakery_slider_page' . $count, array( 'label' => esc_html__( 'Select Slider Page', 'cake-bakery' ), 'section' => 'cake_bakery_slidersettings', 'type' => 'dropdown-pages' ) ); } $wp_customize->add_setting('cake_bakery_sliderbtn_link',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('cake_bakery_sliderbtn_link',array( 'label' => __('Button Link','cake-bakery'), 'section' => 'cake_bakery_slidersettings', 'type' => 'text' )); $wp_customize->add_setting( 'cake_bakery_slider_title_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_slider_title_color', array( 'label' => __('Title Color', 'cake-bakery'), 'section' => 'cake_bakery_slidersettings', 'settings' => 'cake_bakery_slider_title_color', ))); $wp_customize->add_setting( 'cake_bakery_slider_text_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_slider_text_color', array( 'label' => __('Text Color', 'cake-bakery'), 'section' => 'cake_bakery_slidersettings', 'settings' => 'cake_bakery_slider_text_color', ))); $wp_customize->add_setting( 'cake_bakery_slider_btn_text_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_slider_btn_text_color', array( 'label' => __('Button Text Color', 'cake-bakery'), 'section' => 'cake_bakery_slidersettings', 'settings' => 'cake_bakery_slider_btn_text_color', ))); $wp_customize->add_setting( 'cake_bakery_slider_btn_border_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_slider_btn_border_color', array( 'label' => __('Button Border Color', 'cake-bakery'), 'section' => 'cake_bakery_slidersettings', 'settings' => 'cake_bakery_slider_btn_border_color', ))); $wp_customize->add_setting( 'cake_bakery_slider_btn_text_hover_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_slider_btn_text_hover_color', array( 'label' => __('Button Text Hover Color', 'cake-bakery'), 'section' => 'cake_bakery_slidersettings', 'settings' => 'cake_bakery_slider_btn_text_hover_color', ))); $wp_customize->add_setting( 'cake_bakery_slider_btnbg_hover_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_slider_btnbg_hover_color', array( 'label' => __('Button Background Hover Color', 'cake-bakery'), 'section' => 'cake_bakery_slidersettings', 'settings' => 'cake_bakery_slider_btnbg_hover_color', ))); $wp_customize->add_setting( 'cake_bakery_slider_btn_border_hover_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_slider_btn_border_hover_color', array( 'label' => __('Button Border Hover Color', 'cake-bakery'), 'section' => 'cake_bakery_slidersettings', 'settings' => 'cake_bakery_slider_btn_border_hover_color', ))); $wp_customize->add_setting( 'cake_bakery_slider_npbtn_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_slider_npbtn_color', array( 'label' => __('Next/Pre Button Color', 'cake-bakery'), 'section' => 'cake_bakery_slidersettings', 'settings' => 'cake_bakery_slider_npbtn_color', ))); $wp_customize->add_setting( 'cake_bakery_slider_npbtnbg_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_slider_npbtnbg_color', array( 'label' => __('Next/Pre Button Background Color', 'cake-bakery'), 'section' => 'cake_bakery_slidersettings', 'settings' => 'cake_bakery_slider_npbtnbg_color', ))); //footer $wp_customize->add_section('cake_bakery_footer_section',array( 'title' => esc_html__('Footer Text','cake-bakery'), 'panel' => 'cake_bakery_panel_id' )); $wp_customize->add_setting('cake_bakery_footer_copy',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('cake_bakery_footer_copy',array( 'label' => esc_html__('Copyright Text','cake-bakery'), 'section' => 'cake_bakery_footer_section', 'type' => 'text' )); //Wocommerce Shop Page $wp_customize->add_section('cake_bakery_woocommerce_shop_page',array( 'title' => __('Woocommerce Shop Page','cake-bakery'), 'panel' => 'cake_bakery_panel_id' )); $wp_customize->add_setting( 'cake_bakery_products_per_column' , array( 'default' => 3, 'transport' => 'refresh', 'sanitize_callback' => 'cake_bakery_sanitize_choices', ) ); $wp_customize->add_control( 'cake_bakery_products_per_column', array( 'label' => __( 'Product Per Columns', 'cake-bakery' ), 'description' => __('How many products should be shown per Column?','cake-bakery'), 'section' => 'cake_bakery_woocommerce_shop_page', 'type' => 'select', 'choices' => array( '2' => '2', '3' => '3', '4' => '4', '5' => '5', ), ) ); $wp_customize->add_setting('cake_bakery_products_per_page',array( 'default' => 9, 'sanitize_callback' => 'cake_bakery_sanitize_float', )); $wp_customize->add_control('cake_bakery_products_per_page',array( 'label' => __('Product Per Page','cake-bakery'), 'description' => __('How many products should be shown per page?','cake-bakery'), 'section' => 'cake_bakery_woocommerce_shop_page', 'type' => 'number' )); $wp_customize->add_setting( 'cake_bakery_product_title_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_product_title_color', array( 'label' => __('Product Title Color', 'cake-bakery'), 'section' => 'cake_bakery_woocommerce_shop_page', 'settings' => 'cake_bakery_product_title_color', ))); $wp_customize->add_setting( 'cake_bakery_product_price_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_product_price_color', array( 'label' => __('Product Price Color', 'cake-bakery'), 'section' => 'cake_bakery_woocommerce_shop_page', 'settings' => 'cake_bakery_product_price_color', ))); $wp_customize->add_setting( 'cake_bakery_product_btn_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_product_btn_color', array( 'label' => __('Product Button Color', 'cake-bakery'), 'section' => 'cake_bakery_woocommerce_shop_page', 'settings' => 'cake_bakery_product_btn_color', ))); $wp_customize->add_setting( 'cake_bakery_product_btn_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_product_btn_color', array( 'label' => __('Button Color', 'cake-bakery'), 'section' => 'cake_bakery_woocommerce_shop_page', 'settings' => 'cake_bakery_product_btn_color', ))); $wp_customize->add_setting( 'cake_bakery_product_btn_bg_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_product_btn_bg_color', array( 'label' => __('Button Background Color', 'cake-bakery'), 'section' => 'cake_bakery_woocommerce_shop_page', 'settings' => 'cake_bakery_product_btn_bg_color', ))); $wp_customize->add_setting( 'cake_bakery_product_btn_hover_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_product_btn_hover_color', array( 'label' => __('Button Hover Color', 'cake-bakery'), 'section' => 'cake_bakery_woocommerce_shop_page', 'settings' => 'cake_bakery_product_btn_hover_color', ))); $wp_customize->add_setting( 'cake_bakery_product_btn_hover_bg_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_product_btn_hover_bg_color', array( 'label' => __('Button Hover Background Color', 'cake-bakery'), 'section' => 'cake_bakery_woocommerce_shop_page', 'settings' => 'cake_bakery_product_btn_hover_bg_color', ))); $wp_customize->add_setting( 'cake_bakery_product_sale_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_product_sale_color', array( 'label' => __('Sale Badge Color', 'cake-bakery'), 'section' => 'cake_bakery_woocommerce_shop_page', 'settings' => 'cake_bakery_product_sale_color', ))); $wp_customize->add_setting( 'cake_bakery_product_sale_bg_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_product_sale_bg_color', array( 'label' => __('Sale Badge Background Color', 'cake-bakery'), 'section' => 'cake_bakery_woocommerce_shop_page', 'settings' => 'cake_bakery_product_sale_bg_color', ))); // logo site title $wp_customize->add_setting('cake_bakery_site_title_tagline',array( 'default' => true, 'sanitize_callback' => 'cake_bakery_sanitize_checkbox' )); $wp_customize->add_control('cake_bakery_site_title_tagline',array( 'type' => 'checkbox', 'label' => __('Display Site Title and Tagline in Header','cake-bakery'), 'section' => 'title_tagline' )); $wp_customize->add_setting( 'cake_bakery_site_title_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_site_title_color', array( 'label' => __('Site Title Color', 'cake-bakery'), 'section' => 'title_tagline', 'settings' => 'cake_bakery_site_title_color', ))); $wp_customize->add_setting( 'cake_bakery_site_tagline_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'cake_bakery_site_tagline_color', array( 'label' => __('Site Tagline Color', 'cake-bakery'), 'section' => 'title_tagline', 'settings' => 'cake_bakery_site_tagline_color', ))); } add_action( 'customize_register', 'cake_bakery_customize_register' );