add_section( new bolder_thinkup_customizer_customswitch_upgrade( $wp_customize, $prefix_name . 'thinkup_customizer_section_upgrade_top', array( 'title' => __( 'Bolder Pro', 'bolder' ), 'priority' => 1, 'upgrade_text' => __( 'Upgrade Now', 'bolder' ), 'upgrade_url' => '//www.thinkupthemes.com/themes/bolder/', ) ) ); // Add Theme Options Panel $wp_customize->add_panel( $prefix_name . 'thinkup_customizer_section_themeoptions', array( 'title' => __( 'Theme Options', 'bolder' ), 'description' => __( 'Use the options below to customize your theme!', 'bolder' ), 'priority' => 2, ) ); // Add General Settings Section $wp_customize->add_section( $prefix_name . 'thinkup_customizer_section_generalsettings', array( 'title' => __( 'General Settings', 'bolder' ), 'priority' => 10, 'panel' => $prefix_name . 'thinkup_customizer_section_themeoptions', ) ); // Add Homepage Section $wp_customize->add_section( $prefix_name . 'thinkup_customizer_section_homepage', array( 'title' => __( 'Homepage', 'bolder' ), 'priority' => 20, 'panel' => $prefix_name . 'thinkup_customizer_section_themeoptions', ) ); // Add Homepage (Featured) Section $wp_customize->add_section( $prefix_name . 'thinkup_customizer_section_homepagefeatured', array( 'title' => __( 'Homepage (Featured)', 'bolder' ), 'priority' => 30, 'panel' => $prefix_name . 'thinkup_customizer_section_themeoptions', ) ); // Add Header Section $wp_customize->add_section( $prefix_name . 'thinkup_customizer_section_header', array( 'title' => __( 'Header', 'bolder' ), 'priority' => 40, 'panel' => $prefix_name . 'thinkup_customizer_section_themeoptions', ) ); // Add Footer Section $wp_customize->add_section( $prefix_name . 'thinkup_customizer_section_footer', array( 'title' => __( 'Footer', 'bolder' ), 'priority' => 50, 'panel' => $prefix_name . 'thinkup_customizer_section_themeoptions', ) ); // Add Social Media Section $wp_customize->add_section( $prefix_name . 'thinkup_customizer_section_socialmedia', array( 'title' => __( 'Social Media', 'bolder' ), 'priority' => 60, 'panel' => $prefix_name . 'thinkup_customizer_section_themeoptions', ) ); // Add Blog Section $wp_customize->add_section( $prefix_name . 'thinkup_customizer_section_blog', array( 'title' => __( 'Blog', 'bolder' ), 'priority' => 70, 'panel' => $prefix_name . 'thinkup_customizer_section_themeoptions', ) ); // Add Upgrade (10% off) Section $wp_customize->add_section( $prefix_name . 'thinkup_customizer_section_upgrade_inner', array( 'title' => __( 'Upgrade (10% off)', 'bolder' ), 'priority' => 80, 'panel' => $prefix_name . 'thinkup_customizer_section_themeoptions', ) ); // ========================================================================================== // 2. ADD CONTROLS // ========================================================================================== //---------------------------------------------------- // 2.1. Add General Settings Controls //---------------------------------------------------- // Add Logo Heading $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_section_general_heading]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_section( $wp_customize, 'thinkup_section_general_heading', array( 'label' => __( 'Logo Settings', 'bolder' ), 'section' => $prefix_name . 'thinkup_customizer_section_generalsettings', 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_section_general_heading]', 'active_callback' => '', ) ) ); // Add Logo Info Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_general_logosetting]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_raw( $wp_customize, 'thinkup_general_logosetting', array( 'label' => __( 'Since WordPress v4.5 you can now add a site logo using the native WordPress options. To add a site logo go the "Site Identitiy" settings on the main customizer screen.', 'bolder' ), 'section' => $prefix_name . 'thinkup_customizer_section_generalsettings', 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_general_logosetting]', 'active_callback' => '', ) ) ); // Add General Page Heading $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_section_general_page]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_section( $wp_customize, 'thinkup_section_general_page', array( 'label' => __( 'Page Structure', 'bolder' ), 'section' => $prefix_name . 'thinkup_customizer_section_generalsettings', 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_section_general_page]', 'active_callback' => '', ) ) ); // Add Page Layout Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_general_layout]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_radio_image( $wp_customize, 'thinkup_general_layout', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_general_layout]', 'section' => $prefix_name . 'thinkup_customizer_section_generalsettings', 'label' => __( 'Page Layout', 'bolder' ), 'description' => __( 'Select page layout. This will only be applied to published Pages.', 'bolder' ), 'choices' => array( 'option1' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option01.png', 'option2' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option02.png', 'option3' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option03.png', ), 'active_callback' => '', ) ) ); // Add General Sidebar Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_general_sidebars]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_select_sidebar', ) ); $wp_customize->add_control( 'thinkup_general_sidebars', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_general_sidebars]', 'section' => $prefix_name . 'thinkup_customizer_section_generalsettings', 'type' => 'select', 'label' => __( 'Select a Sidebar', 'bolder' ), 'description' => __( 'Choose a sidebar to use with the page layout.', 'bolder' ), 'choices' => bolder_thinkup_customizer_select_array_sidebar(), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); // Add Enable Fixed Layout Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_general_fixedlayoutswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_switch( $wp_customize, 'thinkup_general_fixedlayoutswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_general_fixedlayoutswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_generalsettings', 'label' => __( 'Enable Fixed Layout', 'bolder' ), 'description' => __( '(i.e. Disable responsive layout)', 'bolder' ), 'choices' => array( '1' => __( 'On', 'bolder' ), 'off' => __( 'Off', 'bolder' ), ), 'active_callback' => '', ) ) ); // Add Intro - Background Color Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_general_introbackgroundcolor]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_hex_color', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'thinkup_general_introbackgroundcolor', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_general_introbackgroundcolor]', 'section' => $prefix_name . 'thinkup_customizer_section_generalsettings', 'label' => __( 'Intro - Background Color', 'bolder' ), 'description' => __( 'Select a custom color to use as background.', 'bolder' ), 'active_callback' => '', ) ) ); // Add Enable Breadcrumbs Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_general_breadcrumbswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_switch( $wp_customize, 'thinkup_general_breadcrumbswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_general_breadcrumbswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_generalsettings', 'label' => __( 'Enable Breadcrumbs', 'bolder' ), 'description' => __( 'Switch on to enable breadcrumbs.', 'bolder' ), 'choices' => array( '1' => __( 'On', 'bolder' ), 'off' => __( 'Off', 'bolder' ), ), 'active_callback' => '', ) ) ); //---------------------------------------------------- // 2.2. Homepage //---------------------------------------------------- // Add Homepage Heading $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_section_homepage_heading]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_section( $wp_customize, 'thinkup_section_homepage_heading', array( 'label' => __( 'Control Homepage Layout', 'bolder' ), 'section' => $prefix_name . 'thinkup_customizer_section_homepage', 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_section_homepage_heading]', 'active_callback' => '', ) ) ); // Add Homepage Layout Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_layout]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_radio_image( $wp_customize, 'thinkup_homepage_layout', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_layout]', 'section' => $prefix_name . 'thinkup_customizer_section_homepage', 'label' => __( 'Homepage Layout', 'bolder' ), 'description' => __( 'Select page layout. This will only be applied to static homepages (front page) and not to homepage blogs.', 'bolder' ), 'choices' => array( 'option1' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option01.png', 'option2' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option02.png', 'option3' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option03.png', ), 'active_callback' => '', ) ) ); // Add Homepage Select a Sidebar Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_sidebars]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_select_sidebar', ) ); $wp_customize->add_control( 'thinkup_homepage_sidebars', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_sidebars]', 'section' => $prefix_name . 'thinkup_customizer_section_homepage', 'type' => 'select', 'label' => __( 'Select a Sidebar', 'bolder' ), 'description' => __( 'Choose a sidebar to use with the layout.', 'bolder' ), 'choices' => bolder_thinkup_customizer_select_array_sidebar(), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); // Add Homepage Slider Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_section_homepage_slider]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_section( $wp_customize, 'thinkup_section_homepage_slider', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_section_homepage_slider]', 'section' => $prefix_name . 'thinkup_customizer_section_homepage', 'label' => __( 'Homepage Slider', 'bolder' ), 'active_callback' => '', ) ) ); // Add Choose Homepage Slider Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_sliderswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( 'thinkup_homepage_sliderswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_sliderswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_homepage', 'type' => 'radio', 'label' => __( 'Choose Homepage Slider', 'bolder' ), 'description' => __( 'Switch on to enable home page slider.', 'bolder' ), 'choices' => array( 'option4' => 'Page Slider', 'option3' => 'Disable' ), 'active_callback' => '', ) ); // Add Slide 1 Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_sliderpage1]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_dropdown_pages', ) ); $wp_customize->add_control( 'thinkup_homepage_sliderpage1', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_sliderpage1]', 'section' => $prefix_name . 'thinkup_customizer_section_homepage', 'type' => 'dropdown-pages', 'description' => __( 'Slide 1 - Content (image, title, except, url)', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); // Add Slide 2 Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_sliderpage2]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_dropdown_pages', ) ); $wp_customize->add_control( 'thinkup_homepage_sliderpage2', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_sliderpage2]', 'section' => $prefix_name . 'thinkup_customizer_section_homepage', 'type' => 'dropdown-pages', 'description' => __( 'Slide 2 - Content (image, title, except, url)', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); // Add Slide 3 Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_sliderpage3]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_dropdown_pages', ) ); $wp_customize->add_control( 'thinkup_homepage_sliderpage3', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_sliderpage3]', 'section' => $prefix_name . 'thinkup_customizer_section_homepage', 'type' => 'dropdown-pages', 'description' => __( 'Slide 3 - Content (image, title, except, url)', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); // Add Enable Full-Width Slider Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_sliderpresetwidth]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_switch( $wp_customize, 'thinkup_homepage_sliderpresetwidth', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_sliderpresetwidth]', 'section' => $prefix_name . 'thinkup_customizer_section_homepage', 'label' => __( 'Enable Full-Width Slider', 'bolder' ), 'description' => __( 'Switch on to enable full-width slider.', 'bolder' ), 'choices' => array( '1' => __( 'On', 'bolder' ), 'off' => __( 'Off', 'bolder' ), ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ) ); // Add Slider Height (Max) Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_sliderpresetheight]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'absint', ) ); $wp_customize->add_control( 'thinkup_homepage_sliderpresetheight', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_sliderpresetheight]', 'section' => $prefix_name . 'thinkup_customizer_section_homepage', 'type' => 'text', 'label' => __( 'Slider Height (Max)', 'bolder' ), 'description' => __( 'Specify the maximum slider height (px).', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); // Add Call To Action - Intro Section Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_section_homepage_ctaintro]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_section( $wp_customize, 'thinkup_section_homepage_ctaintro', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_section_homepage_ctaintro]', 'section' => $prefix_name . 'thinkup_customizer_section_homepage', 'label' => __( 'Call To Action - Intro', 'bolder' ), 'active_callback' => '', ) ) ); // Add Homepage - Intro Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_introswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_checkbox', ) ); $wp_customize->add_control( 'thinkup_homepage_introswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_introswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_homepage', 'type' => 'checkbox', 'label' => __( 'Message', 'bolder' ), 'description' => __( 'Check to enable intro on home page.', 'bolder' ), 'active_callback' => '', ) ); // Add Homepage - Intro Title Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_introaction]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'thinkup_homepage_introaction', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_introaction]', 'section' => $prefix_name . 'thinkup_customizer_section_homepage', 'type' => 'text', 'description' => __( 'Enter a title message.

This will be one of the first messages your visitors see. Use this to get their attention.', 'bolder' ), 'active_callback' => '', ) ); // Add Homepage - Intro Teaser Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_introactionteaser]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'thinkup_homepage_introactionteaser', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_introactionteaser]', 'section' => $prefix_name . 'thinkup_customizer_section_homepage', 'type' => 'text', 'description' => __( 'Enter a teaser message.

Use this to provide more details about what you offer.', 'bolder' ), 'active_callback' => '', ) ); // Add Homepage - Intro Button Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_introactiontext1]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'thinkup_homepage_introactiontext1', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_introactiontext1]', 'section' => $prefix_name . 'thinkup_customizer_section_homepage', 'type' => 'text', 'label' => __( 'Button - Text', 'bolder' ), 'description' => __( 'Specify a text for button 1.', 'bolder' ), 'active_callback' => '', ) ); // Add Homepage - Intro Link Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_introactionlink1]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( 'thinkup_homepage_introactionlink1', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_introactionlink1]', 'section' => $prefix_name . 'thinkup_customizer_section_homepage', 'type' => 'radio', 'label' => __( 'Button - Link', 'bolder' ), 'description' => __( 'Specify whether the action button should link to a page on your site, out to external webpage or disable the link altogether.', 'bolder' ), 'choices' => array( 'option1' => __( 'Link to a Page', 'bolder' ), 'option2' => __( 'Specify Custom link', 'bolder' ), 'option3' => __( 'Disable Link', 'bolder' ), ), 'active_callback' => '', ) ); // Add Homepage - Intro Page Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_introactionpage1]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_dropdown_pages', ) ); $wp_customize->add_control( 'thinkup_homepage_introactionpage1', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_introactionpage1]', 'section' => $prefix_name . 'thinkup_customizer_section_homepage', 'type' => 'dropdown-pages', 'label' => __( 'Button - Link to a page', 'bolder' ), 'description' => __( 'Select a target page for action button link.', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); // Add Homepage - Intro Custom Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_introactioncustom1]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'thinkup_homepage_introactioncustom1', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_introactioncustom1]', 'section' => $prefix_name . 'thinkup_customizer_section_homepage', 'type' => 'text', 'label' => __( 'Button - Custom link', 'bolder' ), 'description' => __( 'Input a custom url for the action button link.
Add http:// if linking to an external webpage.', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); //---------------------------------------------------- // 2.3. Homepage (Featured) //---------------------------------------------------- // Add Homepage (Featured) Heading $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_section_homepagefeatured_heading]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_section( $wp_customize, 'thinkup_section_homepagefeatured_heading', array( 'label' => __( 'Display Pre-Designed Homepage Layout', 'bolder' ), 'section' => $prefix_name . 'thinkup_customizer_section_homepagefeatured', 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_section_homepagefeatured_heading]', 'active_callback' => '', ) ) ); // Add Enable Pre-Made Homepage Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_sectionswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_switch( $wp_customize, 'thinkup_homepage_sectionswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_sectionswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_homepagefeatured', 'label' => __( 'Enable Pre-Made Homepage', 'bolder' ), 'description' => __( 'switch on to enable pre-designed homepage layout.', 'bolder' ), 'choices' => array( '1' => __( 'On', 'bolder' ), 'off' => __( 'Off', 'bolder' ), ), 'active_callback' => '', ) ) ); // Add Content Area 1 Icon Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section1_icon]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_select_faicons', ) ); $wp_customize->add_control( 'thinkup_homepage_section1_icon', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section1_icon]', 'section' => $prefix_name . 'thinkup_customizer_section_homepagefeatured', 'type' => 'select', 'label' => __( 'Content Area 1', 'bolder' ), 'description' => __( 'Choose an icon for the section background.', 'bolder' ), 'choices' => bolder_thinkup_customizer_select_array_faicons(), 'active_callback' => '', ) ); // Add Content Area 1 Title Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section1_title]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'thinkup_homepage_section1_title', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section1_title]', 'section' => $prefix_name . 'thinkup_customizer_section_homepagefeatured', 'type' => 'text', 'description' => __( 'Add a title to the section.', 'bolder' ), 'active_callback' => '', ) ); // Add Content Area 1 Description Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section1_desc]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'thinkup_homepage_section1_desc', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section1_desc]', 'section' => $prefix_name . 'thinkup_customizer_section_homepagefeatured', 'type' => 'text', 'description' => __( 'Add some text to featured section 1.', 'bolder' ), 'active_callback' => '', ) ); // Add Content Area 1 Link Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section1_link]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_dropdown_pages', ) ); $wp_customize->add_control( 'thinkup_homepage_section1_link', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section1_link]', 'section' => $prefix_name . 'thinkup_customizer_section_homepagefeatured', 'type' => 'dropdown-pages', 'label' => __( 'Link to a page', 'bolder' ), ) ); // Add Content Area 2 Icon Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section2_icon]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_select_faicons', ) ); $wp_customize->add_control( 'thinkup_homepage_section2_icon', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section2_icon]', 'section' => $prefix_name . 'thinkup_customizer_section_homepagefeatured', 'type' => 'select', 'label' => __( 'Content Area 2', 'bolder' ), 'description' => __( 'Choose an icon for the section background.', 'bolder' ), 'choices' => bolder_thinkup_customizer_select_array_faicons(), 'active_callback' => '', ) ); // Add Content Area 2 Title Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section2_title]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'thinkup_homepage_section2_title', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section2_title]', 'section' => $prefix_name . 'thinkup_customizer_section_homepagefeatured', 'type' => 'text', 'description' => __( 'Add a title to the section.', 'bolder' ), 'active_callback' => '', ) ); // Add Content Area 2 Description Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section2_desc]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'thinkup_homepage_section2_desc', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section2_desc]', 'section' => $prefix_name . 'thinkup_customizer_section_homepagefeatured', 'type' => 'text', 'description' => __( 'Add some text to featured section 2.', 'bolder' ), 'active_callback' => '', ) ); // Add Content Area 2 Link Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section2_link]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_dropdown_pages', ) ); $wp_customize->add_control( 'thinkup_homepage_section2_link', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section2_link]', 'section' => $prefix_name . 'thinkup_customizer_section_homepagefeatured', 'type' => 'dropdown-pages', 'label' => __( 'Link to a page', 'bolder' ), ) ); // Add Content Area 3 Icon Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section3_icon]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_select_faicons', ) ); $wp_customize->add_control( 'thinkup_homepage_section3_icon', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section3_icon]', 'section' => $prefix_name . 'thinkup_customizer_section_homepagefeatured', 'type' => 'select', 'label' => __( 'Content Area 3', 'bolder' ), 'description' => __( 'Choose an icon for the section background.', 'bolder' ), 'choices' => bolder_thinkup_customizer_select_array_faicons(), 'active_callback' => '', ) ); // Add Content Area 3 Title Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section3_title]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'thinkup_homepage_section3_title', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section3_title]', 'section' => $prefix_name . 'thinkup_customizer_section_homepagefeatured', 'type' => 'text', 'description' => __( 'Add a title to the section.', 'bolder' ), 'active_callback' => '', ) ); // Add Content Area 3 Description Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section3_desc]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'thinkup_homepage_section3_desc', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section3_desc]', 'section' => $prefix_name . 'thinkup_customizer_section_homepagefeatured', 'type' => 'text', 'description' => __( 'Add some text to featured section 3.', 'bolder' ), 'active_callback' => '', ) ); // Add Content Area 3 Link Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section3_link]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_dropdown_pages', ) ); $wp_customize->add_control( 'thinkup_homepage_section3_link', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_homepage_section3_link]', 'section' => $prefix_name . 'thinkup_customizer_section_homepagefeatured', 'type' => 'dropdown-pages', 'label' => __( 'Link to a page', 'bolder' ), ) ); //---------------------------------------------------- // 2.4. Header //---------------------------------------------------- // Add Header Heading $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_section_header_heading]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_section( $wp_customize, 'thinkup_section_header_heading', array( 'label' => __( 'Pre Header Style', 'bolder' ), 'section' => $prefix_name . 'thinkup_customizer_section_header', 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_section_header_heading]', 'active_callback' => '', ) ) ); // Add Logo Overflow Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_logooverflow]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_checkbox', ) ); $wp_customize->add_control( 'thinkup_header_logooverflow', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_logooverflow]', 'section' => $prefix_name . 'thinkup_customizer_section_header', 'type' => 'checkbox', 'label' => __( 'Logo Overflow', 'bolder' ), 'description' => __( 'Check to let logo overflow the header container.', 'bolder' ), 'active_callback' => '', ) ); // Add Emable Sticky Header Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_stickyswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_switch( $wp_customize, 'thinkup_header_stickyswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_stickyswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_header', 'label' => __( 'Sticky Header', 'bolder' ), 'description' => __( 'Switch on to fix header to top of page.', 'bolder' ), 'choices' => array( '1' => __( 'On', 'bolder' ), 'off' => __( 'Off', 'bolder' ), ), 'active_callback' => '', ) ) ); // Add Control Header Content Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_section_header_content]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_section( $wp_customize, 'thinkup_section_header_content', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_section_header_content]', 'section' => $prefix_name . 'thinkup_customizer_section_header', 'label' => __( 'Control Header Content', 'bolder' ), 'active_callback' => '', ) ) ); // Add Enable Search (Main Header) Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_searchswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_switch( $wp_customize, 'thinkup_header_searchswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_searchswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_header', 'label' => __( 'Enable Search (Main Header)', 'bolder' ), 'description' => __( 'Switch on to enable header search.', 'bolder' ), 'choices' => array( '1' => __( 'On', 'bolder' ), 'off' => __( 'Off', 'bolder' ), ), 'active_callback' => '', ) ) ); //---------------------------------------------------- // 2.5. Footer //---------------------------------------------------- // Add Footer Heading $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_section_footer_heading]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_section( $wp_customize, 'thinkup_section_footer_heading', array( 'label' => __( 'Control Footer Content', 'bolder' ), 'section' => $prefix_name . 'thinkup_customizer_section_footer', 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_section_footer_heading]', 'active_callback' => '', ) ) ); // Add Footer Widgets Layout Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_footer_layout]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_radio_image( $wp_customize, 'thinkup_footer_layout', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_footer_layout]', 'section' => $prefix_name . 'thinkup_customizer_section_footer', 'label' => __( 'Footer Widgets Layout', 'bolder' ), 'description' => __( 'Select footer layout. Take complete control of the footer content by adding widgets.', 'bolder' ), 'choices' => array( 'option1' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option01.png', 'option2' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option02.png', 'option3' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option03.png', 'option4' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option04.png', 'option5' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option05.png', 'option6' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option06.png', 'option7' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option07.png', 'option8' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option08.png', 'option9' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option09.png', 'option10' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option10.png', 'option11' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option11.png', 'option12' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option12.png', 'option13' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option13.png', 'option14' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option14.png', 'option15' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option15.png', 'option16' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option16.png', 'option17' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option17.png', 'option18' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option18.png', ), 'active_callback' => '', ) ) ); // Add Disable Footer Widgets Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_footer_widgetswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_checkbox', ) ); $wp_customize->add_control( 'thinkup_footer_widgetswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_footer_widgetswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_footer', 'type' => 'checkbox', 'label' => __( 'Disable Footer Widgets', 'bolder' ), 'description' => __( 'Check to disable footer widgets.', 'bolder' ), 'active_callback' => '', ) ); //---------------------------------------------------- // 2.6. Social Media //---------------------------------------------------- // Add Social Media Heading $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_section_socialmedia_heading]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_section( $wp_customize, 'thinkup_section_socialmedia_heading', array( 'label' => __( 'Social Media Control', 'bolder' ), 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_section_socialmedia_heading]', 'active_callback' => '', ) ) ); // Add Social Media Content Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_socialswitchpre]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_switch( $wp_customize, 'thinkup_header_socialswitchpre', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_socialswitchpre]', 'section' => $prefix_name . 'thinkup_customizer_section_header', 'label' => __( 'Enable Social Media Links (Pre Header)', 'bolder' ), 'description' => __( 'Switch on to enable links to social media pages.', 'bolder' ), 'choices' => array( '1' => __( 'On', 'bolder' ), 'off' => __( 'Off', 'bolder' ), ), 'active_callback' => '', ) ) ); // Add Social Media Content Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_section_header_social]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_section( $wp_customize, 'thinkup_section_header_social', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_section_header_social]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'label' => __( 'Social Media Content', 'bolder' ), 'active_callback' => '', ) ) ); // Add Social Media Display Message Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_socialmessage]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'thinkup_header_socialmessage', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_socialmessage]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'type' => 'text', 'description' => __( 'Add a message here. E.g. "Follow Us".
(Only shown in header)', 'bolder' ), 'active_callback' => '', ) ); // Facebook social settings $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_facebookswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_switch( $wp_customize, 'thinkup_header_facebookswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_facebookswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'label' => __( 'Facebook', 'bolder' ), 'description' => __( 'Enable link to Facebook profile.', 'bolder' ), 'choices' => array( '1' => __( 'On', 'bolder' ), 'off' => __( 'Off', 'bolder' ), ), 'active_callback' => '', ) ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_facebooklink]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'thinkup_header_facebooklink', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_facebooklink]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'type' => 'text', 'description' => __( 'Input the url to your Facebook page.', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_facebookiconswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_checkbox', ) ); $wp_customize->add_control( 'thinkup_header_facebookiconswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_facebookiconswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'type' => 'checkbox', 'label' => __( 'Custom Icon', 'bolder' ), 'description' => __( 'Check to use custom Facebook icon', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_facebookcustomicon][url]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'thinkup_header_facebookcustomicon', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_facebookcustomicon][url]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'description' => __( 'Add a link to the image or upload one from your desktop. The image will be resized.', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ) ); // Twitter social settings $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_twitterswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_switch( $wp_customize, 'thinkup_header_twitterswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_twitterswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'label' => __( 'Twitter', 'bolder' ), 'description' => __( 'Enable link to Twitter profile.', 'bolder' ), 'choices' => array( '1' => __( 'On', 'bolder' ), 'off' => __( 'Off', 'bolder' ), ), 'active_callback' => '', ) ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_twitterlink]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'thinkup_header_twitterlink', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_twitterlink]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'type' => 'text', 'description' => __( 'Input the url to your Twitter page.', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_twittericonswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_checkbox', ) ); $wp_customize->add_control( 'thinkup_header_twittericonswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_twittericonswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'type' => 'checkbox', 'label' => __( 'Custom Icon', 'bolder' ), 'description' => __( 'Check to use custom Twitter icon', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_twittercustomicon][url]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'thinkup_header_twittercustomicon', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_twittercustomicon][url]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'description' => __( 'Add a link to the image or upload one from your desktop. The image will be resized.', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ) ); // Google+ social settings $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_googleswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_switch( $wp_customize, 'thinkup_header_googleswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_googleswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'label' => __( 'Google+', 'bolder' ), 'description' => __( 'Enable link to Google+ profile.', 'bolder' ), 'choices' => array( '1' => __( 'On', 'bolder' ), 'off' => __( 'Off', 'bolder' ), ), 'active_callback' => '', ) ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_googlelink]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'thinkup_header_googlelink', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_googlelink]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'type' => 'text', 'description' => __( 'Input the url to your Google+ page.', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_googleiconswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_checkbox', ) ); $wp_customize->add_control( 'thinkup_header_googleiconswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_googleiconswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'type' => 'checkbox', 'label' => __( 'Custom Icon', 'bolder' ), 'description' => __( 'Check to use custom Google+ icon', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_googlecustomicon][url]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'thinkup_header_googlecustomicon', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_googlecustomicon][url]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'description' => __( 'Add a link to the image or upload one from your desktop. The image will be resized.', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ) ); // LinkedIn social settings $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_linkedinswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_switch( $wp_customize, 'thinkup_header_linkedinswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_linkedinswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'label' => __( 'LinkedIn', 'bolder' ), 'description' => __( 'Enable link to LinkedIn profile.', 'bolder' ), 'choices' => array( '1' => __( 'On', 'bolder' ), 'off' => __( 'Off', 'bolder' ), ), 'active_callback' => '', ) ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_linkedinlink]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'thinkup_header_linkedinlink', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_linkedinlink]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'type' => 'text', 'description' => __( 'Input the url to your LinkedIn page.', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_linkediniconswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_checkbox', ) ); $wp_customize->add_control( 'thinkup_header_linkediniconswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_linkediniconswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'type' => 'checkbox', 'label' => __( 'Custom Icon', 'bolder' ), 'description' => __( 'Check to use custom LinkedIn icon', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_linkedincustomicon][url]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'thinkup_header_linkedincustomicon', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_linkedincustomicon][url]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'description' => __( 'Add a link to the image or upload one from your desktop. The image will be resized.', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ) ); // Flickr social settings $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_flickrswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_switch( $wp_customize, 'thinkup_header_flickrswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_flickrswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'label' => __( 'Flickr', 'bolder' ), 'description' => __( 'Enable link to Flickr profile.', 'bolder' ), 'choices' => array( '1' => __( 'On', 'bolder' ), 'off' => __( 'Off', 'bolder' ), ), 'active_callback' => '', ) ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_flickrlink]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'thinkup_header_flickrlink', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_flickrlink]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'type' => 'text', 'description' => __( 'Input the url to your Flickr page.', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_flickriconswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_checkbox', ) ); $wp_customize->add_control( 'thinkup_header_flickriconswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_flickriconswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'type' => 'checkbox', 'label' => __( 'Custom Icon', 'bolder' ), 'description' => __( 'Check to use custom Flickr icon', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_flickrcustomicon][url]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'thinkup_header_flickrcustomicon', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_flickrcustomicon][url]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'description' => __( 'Add a link to the image or upload one from your desktop. The image will be resized.', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ) ); // YouTube social settings $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_youtubeswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_switch( $wp_customize, 'thinkup_header_youtubeswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_youtubeswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'label' => __( 'YouTube', 'bolder' ), 'description' => __( 'Enable link to YouTube profile.', 'bolder' ), 'choices' => array( '1' => __( 'On', 'bolder' ), 'off' => __( 'Off', 'bolder' ), ), 'active_callback' => '', ) ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_youtubelink]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'thinkup_header_youtubelink', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_youtubelink]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'type' => 'text', 'description' => __( 'Input the url to your YouTube page.', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_youtubeiconswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_checkbox', ) ); $wp_customize->add_control( 'thinkup_header_youtubeiconswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_youtubeiconswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'type' => 'checkbox', 'label' => __( 'Custom Icon', 'bolder' ), 'description' => __( 'Check to use custom YouTube icon', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_youtubecustomicon][url]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'thinkup_header_youtubecustomicon', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_youtubecustomicon][url]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'description' => __( 'Add a link to the image or upload one from your desktop. The image will be resized.', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ) ); // RSS social settings $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_rssswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_switch( $wp_customize, 'thinkup_header_rssswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_rssswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'label' => __( 'RSS', 'bolder' ), 'description' => __( 'Enable link to RSS profile.', 'bolder' ), 'choices' => array( '1' => __( 'On', 'bolder' ), 'off' => __( 'Off', 'bolder' ), ), 'active_callback' => '', ) ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_rsslink]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'thinkup_header_rsslink', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_rsslink]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'type' => 'text', 'description' => __( 'Input the url to your RSS page.', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_rssiconswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_checkbox', ) ); $wp_customize->add_control( 'thinkup_header_rssiconswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_rssiconswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'type' => 'checkbox', 'label' => __( 'Custom Icon', 'bolder' ), 'description' => __( 'Check to use custom RSS icon', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_header_rsscustomicon][url]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'thinkup_header_rsscustomicon', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_header_rsscustomicon][url]', 'section' => $prefix_name . 'thinkup_customizer_section_socialmedia', 'description' => __( 'Add a link to the image or upload one from your desktop. The image will be resized.', 'bolder' ), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ) ); //---------------------------------------------------- // 2.7. Blog //---------------------------------------------------- // Add Blog Heading $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_section_blog_heading]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_section( $wp_customize, 'thinkup_section_blog_heading', array( 'label' => __( 'Control Blog (Archive) Pages', 'bolder' ), 'section' => $prefix_name . 'thinkup_customizer_section_blog', 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_section_blog_heading]', 'active_callback' => '', ) ) ); // Add Blog Layout Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_blog_layout]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_radio_image( $wp_customize, 'thinkup_blog_layout', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_blog_layout]', 'section' => $prefix_name . 'thinkup_customizer_section_blog', 'label' => __( 'Blog Layout', 'bolder' ), 'description' => __( 'Select blog page layout. Only applied to the main blog page and not individual posts.', 'bolder' ), 'choices' => array( 'option1' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option01.png', 'option2' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option02.png', 'option3' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option03.png', ), 'active_callback' => '', ) ) ); // Add Blog Select a Sidebar Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_blog_sidebars]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_select_sidebar', ) ); $wp_customize->add_control( 'thinkup_blog_sidebars', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_blog_sidebars]', 'section' => $prefix_name . 'thinkup_customizer_section_blog', 'type' => 'select', 'label' => __( 'Select a Sidebar', 'bolder' ), 'description' => __( 'Note: Sidebars will not be applied to homepage Blog. Control sidebars on the homepage from the 'Home Settings' option.', 'bolder' ), 'choices' => bolder_thinkup_customizer_select_array_sidebar(), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); // Add Post Content Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_blog_postswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( 'thinkup_blog_postswitch', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_blog_postswitch]', 'section' => $prefix_name . 'thinkup_customizer_section_blog', 'type' => 'radio', 'label' => __( 'Post Content', 'bolder' ), 'description' => __( 'Control how much content you want to show from each post on the main blog page. Remember to control the full article content by using the Wordpress more tag in your post.', 'bolder' ), 'choices' => array( 'option1' => __( 'Show excerpt', 'bolder' ), 'option2' => __( 'Show full article', 'bolder' ), 'option3' => __( 'Hide article', 'bolder' ), ) ) ); // Add Control Single Post Page Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_section_post_layout]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_section( $wp_customize, 'thinkup_section_post_layout', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_section_post_layout]', 'section' => $prefix_name . 'thinkup_customizer_section_blog', 'label' => __( 'Control Single Post Page', 'bolder' ), 'active_callback' => '', ) ) ); // Add Post Layout Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_post_layout]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_radio_image( $wp_customize, 'thinkup_post_layout', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_post_layout]', 'section' => $prefix_name . 'thinkup_customizer_section_blog', 'label' => __( 'Post Layout', 'bolder' ), 'description' => __( 'Select blog page layout. This will only be applied to individual posts and not the main blog page.', 'bolder' ), 'choices' => array( 'option1' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option01.png', 'option2' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option02.png', 'option3' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option03.png', ), 'active_callback' => '', ) ) ); // Add Post Select a Sidebar Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_post_sidebars]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_select_sidebar', ) ); $wp_customize->add_control( 'thinkup_post_sidebars', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_post_sidebars]', 'section' => $prefix_name . 'thinkup_customizer_section_blog', 'type' => 'select', 'label' => __( 'Select a Sidebar', 'bolder' ), 'description' => __( 'Choose a sidebar to use with the layout.', 'bolder' ), 'choices' => bolder_thinkup_customizer_select_array_sidebar(), 'active_callback' => $prefix_name . 'thinkup_customizer_callback_active_global', ) ); // Add Show Author Bio Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_post_authorbio]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => $prefix_name . 'thinkup_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_switch( $wp_customize, 'thinkup_post_authorbio', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_post_authorbio]', 'section' => $prefix_name . 'thinkup_customizer_section_blog', 'label' => __( 'Show Author Bio', 'bolder' ), 'description' => __( 'Check to enable the author biography.', 'bolder' ), 'choices' => array( '1' => __( 'On', 'bolder' ), 'off' => __( 'Off', 'bolder' ), ), 'active_callback' => '', ) ) ); //---------------------------------------------------- // 2.8. Upgrade Section (10% off) //---------------------------------------------------- // Add Upgrade Control $wp_customize->add_setting( $prefix_name . 'thinkup_redux_variables[thinkup_upgrade_content]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'wp_filter_post_kses', ) ); $wp_customize->add_control( new bolder_thinkup_customizer_customcontrol_upgrade_inner( $wp_customize, 'thinkup_upgrade_content', array( 'settings' => $prefix_name . 'thinkup_redux_variables[thinkup_upgrade_content]', 'section' => $prefix_name . 'thinkup_customizer_section_upgrade_inner', 'upgrade_url' => '//www.thinkupthemes.com/themes/bolder/', 'price_discount' => __( 'Upgrade for $31 (10% off)', 'bolder' ), 'price_normal' => __( 'Normally $35. Use coupon at checkout.', 'bolder' ), 'coupon' => __( 'bolder31', 'bolder' ), 'button' => __( 'Upgrade Now', 'bolder' ), 'title_main' => __( 'So… Why upgrade?', 'bolder' ), 'title_secondary' => __( 'We're glad you asked! Here's just some of the amazing features you'll get when you upgrade…', 'bolder' ), 'images' => array( '%s/admin/main/inc/controls/upgrade_inner/img/1_trusted_team.png', '%s/admin/main/inc/controls/upgrade_inner/img/2_page_builder.png', '%s/admin/main/inc/controls/upgrade_inner/img/3_premium_support.png', '%s/admin/main/inc/controls/upgrade_inner/img/4_theme_options.png', '%s/admin/main/inc/controls/upgrade_inner/img/5_shortcodes.png', '%s/admin/main/inc/controls/upgrade_inner/img/6_unlimited_colors.png', '%s/admin/main/inc/controls/upgrade_inner/img/7_parallax_pages.png', '%s/admin/main/inc/controls/upgrade_inner/img/8_typography.png', '%s/admin/main/inc/controls/upgrade_inner/img/9_backgrounds.png', '%s/admin/main/inc/controls/upgrade_inner/img/10_responsive.png', '%s/admin/main/inc/controls/upgrade_inner/img/11_retina_ready.png', '%s/admin/main/inc/controls/upgrade_inner/img/12_site_layout.png', '%s/admin/main/inc/controls/upgrade_inner/img/13_translation_ready.png', '%s/admin/main/inc/controls/upgrade_inner/img/14_rtl_support.png', '%s/admin/main/inc/controls/upgrade_inner/img/15_infinite_sidebars.png', '%s/admin/main/inc/controls/upgrade_inner/img/16_portfolios.png', '%s/admin/main/inc/controls/upgrade_inner/img/17_seo_optimized.png', '%s/admin/main/inc/controls/upgrade_inner/img/18_demo_content.png', ), 'active_callback' => '', ) ) ); } add_action( 'customize_register', 'bolder_thinkup_customizer_theme_options' );