add_section( new astronomy_customizer_customswitch_button_link( $wp_customize, 'astronomy_customizer_section_upgrade_top', array( 'title' => __( 'Astronomy Pro', 'astronomy' ), 'priority' => 1, 'button_text' => __( 'Upgrade Now', 'astronomy' ), 'button_url' => '//www.astronomythemes.com/themes/astronomy/', 'button_class' => 'button-primary', ) ) ); // Add Documentation Section $wp_customize->add_section( new astronomy_customizer_customswitch_button_link( $wp_customize, 'astronomy_customizer_section_docs', array( 'title' => __( 'Documentation', 'astronomy' ), 'priority' => 1, 'button_text' => __( 'View Docs', 'astronomy' ), 'button_url' => admin_url( 'themes.php?page=astronomy-welcome&tab=documentation' ), 'button_class' => 'button-secondary', ) ) ); // Add Theme Options Panel $wp_customize->add_panel( 'astronomy_customizer_section_themeoptions', array( 'title' => 'Theme Options', 'description' => __( 'Use the options below to customize your theme!', 'astronomy' ), 'priority' => 2, ) ); // Add General Settings Section $wp_customize->add_section( 'astronomy_customizer_section_generalsettings', array( 'title' => 'General Settings', 'priority' => 10, 'panel' => 'astronomy_customizer_section_themeoptions', ) ); // Add Homepage Section $wp_customize->add_section( 'astronomy_customizer_section_homepage', array( 'title' => 'Homepage', 'priority' => 20, 'panel' => 'astronomy_customizer_section_themeoptions', ) ); // Add Homepage (Featured) Section $wp_customize->add_section( 'astronomy_customizer_section_homepagefeatured', array( 'title' => 'Homepage (Featured)', 'priority' => 30, 'panel' => 'astronomy_customizer_section_themeoptions', ) ); // Add Header Section $wp_customize->add_section( 'astronomy_customizer_section_header', array( 'title' => 'Header', 'priority' => 40, 'panel' => 'astronomy_customizer_section_themeoptions', ) ); // Add Footer Section $wp_customize->add_section( 'astronomy_customizer_section_footer', array( 'title' => 'Footer', 'priority' => 50, 'panel' => 'astronomy_customizer_section_themeoptions', ) ); // Add Social Media Section $wp_customize->add_section( 'astronomy_customizer_section_socialmedia', array( 'title' => 'Social Media', 'priority' => 60, 'panel' => 'astronomy_customizer_section_themeoptions', ) ); // Add Blog Section $wp_customize->add_section( 'astronomy_customizer_section_blog', array( 'title' => 'Blog', 'priority' => 70, 'panel' => 'astronomy_customizer_section_themeoptions', ) ); // Add Upgrade (10% off) Section $wp_customize->add_section( 'astronomy_customizer_section_upgrade', array( 'title' => 'Upgrade (10% off)', 'priority' => 80, 'panel' => 'astronomy_customizer_section_themeoptions', ) ); // ========================================================================================== // 2. ADD CONTROLS // ========================================================================================== //---------------------------------------------------- // 2.1. Add General Settings Controls //---------------------------------------------------- // Add Logo Heading $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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 astronomy_customizer_customcontrol_section( $wp_customize, 'astronomy_section_general_heading', array( 'label' => __( 'Logo Settings', 'astronomy' ), 'section' => 'astronomy_customizer_section_generalsettings', 'settings' => 'astronomy_redux_variables[astronomy_section_general_heading]', 'active_callback' => '', ) ) ); // Add Logo Info Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_general_logosetting]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_raw( $wp_customize, 'astronomy_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.', 'astronomy' ), 'section' => 'astronomy_customizer_section_generalsettings', 'settings' => 'astronomy_redux_variables[astronomy_general_logosetting]', 'active_callback' => '', ) ) ); // Add General Page Heading $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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 astronomy_customizer_customcontrol_section( $wp_customize, 'astronomy_section_general_page', array( 'label' => __( 'Page Structure', 'astronomy' ), 'section' => 'astronomy_customizer_section_generalsettings', 'settings' => 'astronomy_redux_variables[astronomy_section_general_page]', 'active_callback' => '', ) ) ); // Add Page Layout Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_general_layout]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_radio_image( $wp_customize, 'astronomy_general_layout', array( 'settings' => 'astronomy_redux_variables[astronomy_general_layout]', 'section' => 'astronomy_customizer_section_generalsettings', 'label' => __( 'Page Layout', 'astronomy' ), 'description' => __( 'Select page layout. This will only be applied to published Pages.', 'astronomy' ), '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( 'astronomy_redux_variables[astronomy_general_sidebars]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_select_sidebar', ) ); $wp_customize->add_control( 'astronomy_general_sidebars', array( 'settings' => 'astronomy_redux_variables[astronomy_general_sidebars]', 'section' => 'astronomy_customizer_section_generalsettings', 'type' => 'select', 'label' => __( 'Select a Sidebar', 'astronomy' ), 'description' => __( 'Choose a sidebar to use with the page layout.', 'astronomy' ), 'choices' => astronomy_customizer_select_array_sidebar(), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); // Add Enable Fixed Layout Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_general_fixedlayoutswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_switch( $wp_customize, 'astronomy_general_fixedlayoutswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_general_fixedlayoutswitch]', 'section' => 'astronomy_customizer_section_generalsettings', 'label' => __( 'Enable Fixed Layout', 'astronomy' ), 'description' => __( '(i.e. Disable responsive layout)', 'astronomy' ), 'choices' => array( '1' => __( 'On', 'astronomy' ), 'off' => __( 'Off', 'astronomy' ), ), 'active_callback' => '', ) ) ); // Add Enable Breadcrumbs Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_general_breadcrumbswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_switch( $wp_customize, 'astronomy_general_breadcrumbswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_general_breadcrumbswitch]', 'section' => 'astronomy_customizer_section_generalsettings', 'label' => __( 'Enable Breadcrumbs', 'astronomy' ), 'description' => __( 'Switch on to enable breadcrumbs.', 'astronomy' ), 'choices' => array( '1' => __( 'On', 'astronomy' ), 'off' => __( 'Off', 'astronomy' ), ), 'active_callback' => '', ) ) ); // Add Breadcrumb Delimiter Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_general_breadcrumbdelimeter]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'astronomy_general_breadcrumbdelimeter', array( 'settings' => 'astronomy_redux_variables[astronomy_general_breadcrumbdelimeter]', 'section' => 'astronomy_customizer_section_generalsettings', 'type' => 'text', 'label' => __( 'Breadcrumb Delimiter', 'astronomy' ), 'description' => __( 'Specify a custom delimiter to use instead of the default ( / ).', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); // Add Custom Code Heading $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_section_general_code]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_section( $wp_customize, 'astronomy_section_general_code', array( 'label' => __( 'Custom Code', 'astronomy' ), 'section' => 'astronomy_customizer_section_generalsettings', 'settings' => 'astronomy_redux_variables[astronomy_section_general_code]', 'active_callback' => '', ) ) ); // Add Custom CSS Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_general_customcss]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'wp_strip_all_tags', ) ); $wp_customize->add_control( 'astronomy_general_customcss', array( 'settings' => 'astronomy_redux_variables[astronomy_general_customcss]', 'section' => 'astronomy_customizer_section_generalsettings', 'type' => 'textarea', 'label' => __( 'Custom CSS', 'astronomy' ), 'description' => __( 'Developers can use this to apply custom css.', 'astronomy' ), 'active_callback' => '', ) ); //---------------------------------------------------- // 2.2. Homepage //---------------------------------------------------- // Add Homepage Heading $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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 astronomy_customizer_customcontrol_section( $wp_customize, 'astronomy_section_homepage_heading', array( 'label' => __( 'Control Homepage Layout', 'astronomy' ), 'section' => 'astronomy_customizer_section_homepage', 'settings' => 'astronomy_redux_variables[astronomy_section_homepage_heading]', 'active_callback' => '', ) ) ); // Add Homepage Layout Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_layout]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_radio_image( $wp_customize, 'astronomy_homepage_layout', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_layout]', 'section' => 'astronomy_customizer_section_homepage', 'label' => __( 'Homepage Layout', 'astronomy' ), 'description' => __( 'Select page layout. This will only be applied to static homepages (front page) and not to homepage blogs.', 'astronomy' ), '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( 'astronomy_redux_variables[astronomy_homepage_sidebars]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_select_sidebar', ) ); $wp_customize->add_control( 'astronomy_homepage_sidebars', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_sidebars]', 'section' => 'astronomy_customizer_section_homepage', 'type' => 'select', 'label' => __( 'Select a Sidebar', 'astronomy' ), 'description' => __( 'Choose a sidebar to use with the layout.', 'astronomy' ), 'choices' => astronomy_customizer_select_array_sidebar(), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); // Add Homepage Slider Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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 astronomy_customizer_customcontrol_section( $wp_customize, 'astronomy_section_homepage_slider', array( 'settings' => 'astronomy_redux_variables[astronomy_section_homepage_slider]', 'section' => 'astronomy_customizer_section_homepage', 'label' => __( 'Homepage Slider', 'astronomy' ), 'active_callback' => '', ) ) ); // Add Choose Homepage Slider Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_sliderswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( 'astronomy_homepage_sliderswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_sliderswitch]', 'section' => 'astronomy_customizer_section_homepage', 'type' => 'radio', 'label' => __( 'Choose Homepage Slider', 'astronomy' ), 'description' => __( 'Switch on to enable home page slider.', 'astronomy' ), 'choices' => array( 'option4' => 'Image Slider', 'option3' => 'Disable' ), 'active_callback' => '', ) ); // Add Image Slide 1 - Info $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_sliderimage1_info]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_raw( $wp_customize, 'astronomy_homepage_sliderimage1_info', array( 'label' => __( 'Slide 1', 'astronomy' ), 'section' => 'astronomy_customizer_section_homepage', 'settings' => 'astronomy_redux_variables[astronomy_homepage_sliderimage1_info]', 'active_callback' => 'astronomy_customizer_callback_active_global', ) ) ); // Add Image Slide 1 - Image $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_sliderimage1_image][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, 'astronomy_homepage_sliderimage1_image', array( 'section' => 'astronomy_customizer_section_homepage', 'settings' => 'astronomy_redux_variables[astronomy_homepage_sliderimage1_image][url]', 'label' => __( '', 'astronomy' ), 'description' => __( 'Image', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ) ); // Add Image Slide 1 - Title $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_sliderimage1_title]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'astronomy_homepage_sliderimage1_title', array( 'section' => 'astronomy_customizer_section_homepage', 'settings' => 'astronomy_redux_variables[astronomy_homepage_sliderimage1_title]', 'type' => 'text', 'label' => __( '', 'astronomy' ), 'description' => __( 'Title', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); // Add Image Slide 1 - Description $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_sliderimage1_desc]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'astronomy_homepage_sliderimage1_desc', array( 'section' => 'astronomy_customizer_section_homepage', 'settings' => 'astronomy_redux_variables[astronomy_homepage_sliderimage1_desc]', 'type' => 'text', 'label' => __( '', 'astronomy' ), 'description' => __( 'Description', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); // Add Slide 1 - Page Link $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_sliderimage1_link]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_dropdown_pages', ) ); $wp_customize->add_control( 'astronomy_homepage_sliderimage1_link', array( 'section' => 'astronomy_customizer_section_homepage', 'settings' => 'astronomy_redux_variables[astronomy_homepage_sliderimage1_link]', 'type' => 'dropdown-pages', 'label' => __( '', 'astronomy' ), 'description' => __( 'URL', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); // Add Image Slide 2 - Info $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_sliderimage2_info]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_raw( $wp_customize, 'astronomy_homepage_sliderimage2_info', array( 'label' => __( 'Slide 2', 'astronomy' ), 'section' => 'astronomy_customizer_section_homepage', 'settings' => 'astronomy_redux_variables[astronomy_homepage_sliderimage2_info]', 'active_callback' => 'astronomy_customizer_callback_active_global', ) ) ); // Add Image Slide 2 - Image $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_sliderimage2_image][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, 'astronomy_homepage_sliderimage2_image', array( 'section' => 'astronomy_customizer_section_homepage', 'settings' => 'astronomy_redux_variables[astronomy_homepage_sliderimage2_image][url]', 'label' => __( '', 'astronomy' ), 'description' => __( 'Image', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ) ); // Add Image Slide 2 - Title $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_sliderimage2_title]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'astronomy_homepage_sliderimage2_title', array( 'section' => 'astronomy_customizer_section_homepage', 'settings' => 'astronomy_redux_variables[astronomy_homepage_sliderimage2_title]', 'type' => 'text', 'label' => __( '', 'astronomy' ), 'description' => __( 'Title', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); // Add Image Slide 2 - Description $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_sliderimage2_desc]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'astronomy_homepage_sliderimage2_desc', array( 'section' => 'astronomy_customizer_section_homepage', 'settings' => 'astronomy_redux_variables[astronomy_homepage_sliderimage2_desc]', 'type' => 'text', 'label' => __( '', 'astronomy' ), 'description' => __( 'Description', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); // Add Slide 2 - Page Link $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_sliderimage2_link]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_dropdown_pages', ) ); $wp_customize->add_control( 'astronomy_homepage_sliderimage2_link', array( 'section' => 'astronomy_customizer_section_homepage', 'settings' => 'astronomy_redux_variables[astronomy_homepage_sliderimage2_link]', 'type' => 'dropdown-pages', 'label' => __( '', 'astronomy' ), 'description' => __( 'URL', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); // Add Image Slide 3 - Info $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_sliderimage3_info]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_raw( $wp_customize, 'astronomy_homepage_sliderimage3_info', array( 'label' => __( 'Slide 3', 'astronomy' ), 'section' => 'astronomy_customizer_section_homepage', 'settings' => 'astronomy_redux_variables[astronomy_homepage_sliderimage3_info]', 'active_callback' => 'astronomy_customizer_callback_active_global', ) ) ); // Add Image Slide 3 - Image $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_sliderimage3_image][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, 'astronomy_homepage_sliderimage3_image', array( 'section' => 'astronomy_customizer_section_homepage', 'settings' => 'astronomy_redux_variables[astronomy_homepage_sliderimage3_image][url]', 'label' => __( '', 'astronomy' ), 'description' => __( 'Image', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ) ); // Add Image Slide 3 - Title $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_sliderimage3_title]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'astronomy_homepage_sliderimage3_title', array( 'section' => 'astronomy_customizer_section_homepage', 'settings' => 'astronomy_redux_variables[astronomy_homepage_sliderimage3_title]', 'type' => 'text', 'label' => __( '', 'astronomy' ), 'description' => __( 'Title', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); // Add Image Slide 3 - Description $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_sliderimage3_desc]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'astronomy_homepage_sliderimage3_desc', array( 'section' => 'astronomy_customizer_section_homepage', 'settings' => 'astronomy_redux_variables[astronomy_homepage_sliderimage3_desc]', 'type' => 'text', 'label' => __( '', 'astronomy' ), 'description' => __( 'Description', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); // Add Slide 3 - Page Link $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_sliderimage3_link]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_dropdown_pages', ) ); $wp_customize->add_control( 'astronomy_homepage_sliderimage3_link', array( 'section' => 'astronomy_customizer_section_homepage', 'settings' => 'astronomy_redux_variables[astronomy_homepage_sliderimage3_link]', 'type' => 'dropdown-pages', 'label' => __( '', 'astronomy' ), 'description' => __( 'URL', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); // Add Slider Height (Max) Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_sliderpresetheight]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '350', 'transport' => 'refresh', 'sanitize_callback' => 'absint', ) ); $wp_customize->add_control( 'astronomy_homepage_sliderpresetheight', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_sliderpresetheight]', 'section' => 'astronomy_customizer_section_homepage', 'type' => 'text', 'label' => __( 'Slider Height (Max)', 'astronomy' ), 'description' => __( 'Specify the maximum slider height (px).', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); // Add Enable Full-Width Slider Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_sliderpresetwidth]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_switch( $wp_customize, 'astronomy_homepage_sliderpresetwidth', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_sliderpresetwidth]', 'section' => 'astronomy_customizer_section_homepage', 'label' => __( 'Enable Full-Width Slider', 'astronomy' ), 'description' => __( 'Switch on to enable full-width slider.', 'astronomy' ), 'choices' => array( '1' => __( 'On', 'astronomy' ), 'off' => __( 'Off', 'astronomy' ), ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ) ); // Add Call To Action - Intro Section Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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 astronomy_customizer_customcontrol_section( $wp_customize, 'astronomy_section_homepage_ctaintro', array( 'settings' => 'astronomy_redux_variables[astronomy_section_homepage_ctaintro]', 'section' => 'astronomy_customizer_section_homepage', 'label' => __( 'Call To Action - Intro', 'astronomy' ), 'active_callback' => '', ) ) ); // Add Homepage - Intro Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_introswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_checkbox', ) ); $wp_customize->add_control( 'astronomy_homepage_introswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_introswitch]', 'section' => 'astronomy_customizer_section_homepage', 'type' => 'checkbox', 'label' => __( 'Message', 'astronomy' ), 'description' => __( 'Check to enable intro on home page.', 'astronomy' ), 'active_callback' => '', ) ); // Add Homepage - Intro Title Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_introaction]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'astronomy_homepage_introaction', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_introaction]', 'section' => 'astronomy_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.', 'astronomy' ), 'active_callback' => '', ) ); // Add Call To Action Style Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_introstyle]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( 'astronomy_homepage_introstyle', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_introstyle]', 'section' => 'astronomy_customizer_section_homepage', 'type' => 'radio', 'label' => __( '', 'astronomy' ), 'description' => __( 'Select a call to action style.', 'astronomy' ), 'choices' => array( 'option1' => 'Style 1', 'option2' => 'Style 2' ) ) ); // Add Homepage - Intro Teaser Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_introactionteaser]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'astronomy_homepage_introactionteaser', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_introactionteaser]', 'section' => 'astronomy_customizer_section_homepage', 'type' => 'text', 'description' => __( 'Enter a teaser message.

Use this to provide more details about what you offer.', 'astronomy' ), 'active_callback' => '', ) ); // Add Homepage - Intro Button Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_introactiontext1]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'astronomy_homepage_introactiontext1', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_introactiontext1]', 'section' => 'astronomy_customizer_section_homepage', 'type' => 'text', 'label' => __( 'Button - Text', 'astronomy' ), 'description' => __( 'Specify a text for button 1.', 'astronomy' ), 'active_callback' => '', ) ); // Add Homepage - Intro Link Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_introactionlink1]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( 'astronomy_homepage_introactionlink1', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_introactionlink1]', 'section' => 'astronomy_customizer_section_homepage', 'type' => 'radio', 'label' => __( 'Button - Link', 'astronomy' ), 'description' => __( 'Specify whether the action button should link to a page on your site, out to external webpage or disable the link altogether.', 'astronomy' ), 'choices' => array( 'option1' => __( 'Link to a Page', 'astronomy' ), 'option2' => __( 'Specify Custom link', 'astronomy' ), 'option3' => __( 'Disable Link', 'astronomy' ), ), 'active_callback' => '', ) ); // Add Homepage - Intro Page Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_introactionpage1]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_dropdown_pages', ) ); $wp_customize->add_control( 'astronomy_homepage_introactionpage1', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_introactionpage1]', 'section' => 'astronomy_customizer_section_homepage', 'type' => 'dropdown-pages', 'label' => __( 'Button - Link to a page', 'astronomy' ), 'description' => __( 'Select a target page for action button link.', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); // Add Homepage - Intro Custom Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_introactioncustom1]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'astronomy_homepage_introactioncustom1', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_introactioncustom1]', 'section' => 'astronomy_customizer_section_homepage', 'type' => 'text', 'label' => __( 'Button - Custom link', 'astronomy' ), 'description' => __( 'Input a custom url for the action button link.
Add http:// if linking to an external webpage.', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); //---------------------------------------------------- // 2.3. Homepage (Featured) //---------------------------------------------------- // Add Homepage (Featured) Heading $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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 astronomy_customizer_customcontrol_section( $wp_customize, 'astronomy_section_homepagefeatured_heading', array( 'label' => __( 'Display Pre-Designed Homepage Layout', 'astronomy' ), 'section' => 'astronomy_customizer_section_homepagefeatured', 'settings' => 'astronomy_redux_variables[astronomy_section_homepagefeatured_heading]', 'active_callback' => '', ) ) ); // Add Enable Pre-Made Homepage Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_sectionswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_switch( $wp_customize, 'astronomy_homepage_sectionswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_sectionswitch]', 'section' => 'astronomy_customizer_section_homepagefeatured', 'label' => __( 'Enable Pre-Made Homepage', 'astronomy' ), 'description' => __( 'switch on to enable pre-designed homepage layout.', 'astronomy' ), 'choices' => array( '1' => __( 'On', 'astronomy' ), 'off' => __( 'Off', 'astronomy' ), ), 'active_callback' => '', ) ) ); // Add Content Area 1 Icon Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_section1_icon]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_select_faicons', ) ); $wp_customize->add_control( 'astronomy_homepage_section1_icon', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_section1_icon]', 'section' => 'astronomy_customizer_section_homepagefeatured', 'type' => 'select', 'label' => __( 'Content Area 1', 'astronomy' ), 'description' => __( 'Choose an icon for the section background.', 'astronomy' ), 'choices' => astronomy_customizer_select_array_faicons(), 'active_callback' => '', ) ); // Add Content Area 1 Title Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_section1_title]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'astronomy_homepage_section1_title', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_section1_title]', 'section' => 'astronomy_customizer_section_homepagefeatured', 'type' => 'text', 'description' => __( 'Add a title to the section.', 'astronomy' ), 'active_callback' => '', ) ); // Add Content Area 1 Description Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_section1_desc]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'astronomy_homepage_section1_desc', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_section1_desc]', 'section' => 'astronomy_customizer_section_homepagefeatured', 'type' => 'text', 'description' => __( 'Add some text to featured section 1.', 'astronomy' ), 'active_callback' => '', ) ); // Add Content Area 1 Link Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_section1_link]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_dropdown_pages', ) ); $wp_customize->add_control( 'astronomy_homepage_section1_link', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_section1_link]', 'section' => 'astronomy_customizer_section_homepagefeatured', 'type' => 'dropdown-pages', 'label' => __( 'Link to a page', 'astronomy' ), ) ); // Add Content Area 2 Icon Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_section2_icon]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_select_faicons', ) ); $wp_customize->add_control( 'astronomy_homepage_section2_icon', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_section2_icon]', 'section' => 'astronomy_customizer_section_homepagefeatured', 'type' => 'select', 'label' => __( 'Content Area 2', 'astronomy' ), 'description' => __( 'Choose an icon for the section background.', 'astronomy' ), 'choices' => astronomy_customizer_select_array_faicons(), 'active_callback' => '', ) ); // Add Content Area 2 Title Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_section2_title]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'astronomy_homepage_section2_title', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_section2_title]', 'section' => 'astronomy_customizer_section_homepagefeatured', 'type' => 'text', 'description' => __( 'Add a title to the section.', 'astronomy' ), 'active_callback' => '', ) ); // Add Content Area 2 Description Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_section2_desc]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'astronomy_homepage_section2_desc', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_section2_desc]', 'section' => 'astronomy_customizer_section_homepagefeatured', 'type' => 'text', 'description' => __( 'Add some text to featured section 2.', 'astronomy' ), 'active_callback' => '', ) ); // Add Content Area 2 Link Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_section2_link]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_dropdown_pages', ) ); $wp_customize->add_control( 'astronomy_homepage_section2_link', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_section2_link]', 'section' => 'astronomy_customizer_section_homepagefeatured', 'type' => 'dropdown-pages', 'label' => __( 'Link to a page', 'astronomy' ), ) ); // Add Content Area 3 Icon Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_section3_icon]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_select_faicons', ) ); $wp_customize->add_control( 'astronomy_homepage_section3_icon', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_section3_icon]', 'section' => 'astronomy_customizer_section_homepagefeatured', 'type' => 'select', 'label' => __( 'Content Area 3', 'astronomy' ), 'description' => __( 'Choose an icon for the section background.', 'astronomy' ), 'choices' => astronomy_customizer_select_array_faicons(), 'active_callback' => '', ) ); // Add Content Area 3 Title Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_section3_title]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'astronomy_homepage_section3_title', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_section3_title]', 'section' => 'astronomy_customizer_section_homepagefeatured', 'type' => 'text', 'description' => __( 'Add a title to the section.', 'astronomy' ), 'active_callback' => '', ) ); // Add Content Area 3 Description Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_section3_desc]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'astronomy_homepage_section3_desc', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_section3_desc]', 'section' => 'astronomy_customizer_section_homepagefeatured', 'type' => 'text', 'description' => __( 'Add some text to featured section 3.', 'astronomy' ), 'active_callback' => '', ) ); // Add Content Area 3 Link Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_homepage_section3_link]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_dropdown_pages', ) ); $wp_customize->add_control( 'astronomy_homepage_section3_link', array( 'settings' => 'astronomy_redux_variables[astronomy_homepage_section3_link]', 'section' => 'astronomy_customizer_section_homepagefeatured', 'type' => 'dropdown-pages', 'label' => __( 'Link to a page', 'astronomy' ), ) ); //---------------------------------------------------- // 2.4. Header //---------------------------------------------------- // Add Header Heading $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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 astronomy_customizer_customcontrol_section( $wp_customize, 'astronomy_section_header_heading', array( 'label' => __( 'Header Style', 'astronomy' ), 'section' => 'astronomy_customizer_section_header', 'settings' => 'astronomy_redux_variables[astronomy_section_header_heading]', 'active_callback' => '', ) ) ); // Add Enable Fancy Dropdown Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_fancydrop]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_switch( $wp_customize, 'astronomy_header_fancydrop', array( 'settings' => 'astronomy_redux_variables[astronomy_header_fancydrop]', 'section' => 'astronomy_customizer_section_header', 'label' => __( 'Enable Fancy Dropdown', 'astronomy' ), 'description' => __( 'Switch on to enable fancy dropdown menu styling.', 'astronomy' ), 'choices' => array( '1' => __( 'On', 'astronomy' ), 'off' => __( 'Off', 'astronomy' ), ), 'active_callback' => '', ) ) ); // Add Control Header Content Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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 astronomy_customizer_customcontrol_section( $wp_customize, 'astronomy_section_header_content', array( 'settings' => 'astronomy_redux_variables[astronomy_section_header_content]', 'section' => 'astronomy_customizer_section_header', 'label' => __( 'Control Header Content', 'astronomy' ), 'active_callback' => '', ) ) ); // Add Enable Search (Main Header) Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_searchswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_switch( $wp_customize, 'astronomy_header_searchswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_header_searchswitch]', 'section' => 'astronomy_customizer_section_header', 'label' => __( 'Enable Search (Main Header)', 'astronomy' ), 'description' => __( 'Switch on to enable header search.', 'astronomy' ), 'choices' => array( '1' => __( 'On', 'astronomy' ), 'off' => __( 'Off', 'astronomy' ), ), 'active_callback' => '', ) ) ); //---------------------------------------------------- // 2.5. Footer //---------------------------------------------------- // Add Footer Heading $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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 astronomy_customizer_customcontrol_section( $wp_customize, 'astronomy_section_footer_heading', array( 'label' => __( 'Control Footer Content', 'astronomy' ), 'section' => 'astronomy_customizer_section_footer', 'settings' => 'astronomy_redux_variables[astronomy_section_footer_heading]', 'active_callback' => '', ) ) ); // Add Footer Widgets Layout Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_footer_layout]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_radio_image( $wp_customize, 'astronomy_footer_layout', array( 'settings' => 'astronomy_redux_variables[astronomy_footer_layout]', 'section' => 'astronomy_customizer_section_footer', 'label' => __( 'Footer Widgets Layout', 'astronomy' ), 'description' => __( 'Select footer layout. Take complete control of the footer content by adding widgets.', 'astronomy' ), '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( 'astronomy_redux_variables[astronomy_footer_widgetswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_checkbox', ) ); $wp_customize->add_control( 'astronomy_footer_widgetswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_footer_widgetswitch]', 'section' => 'astronomy_customizer_section_footer', 'type' => 'checkbox', 'label' => __( 'Disable Footer Widgets', 'astronomy' ), 'description' => __( 'Check to disable footer widgets.', 'astronomy' ), 'active_callback' => '', ) ); // Add Enable Scroll To Top Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_footer_scroll]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_switch( $wp_customize, 'astronomy_footer_scroll', array( 'settings' => 'astronomy_redux_variables[astronomy_footer_scroll]', 'section' => 'astronomy_customizer_section_footer', 'label' => __( 'Enable Scroll To Top', 'astronomy' ), 'description' => __( 'Check to enable scroll to top.', 'astronomy' ), 'choices' => array( '1' => __( 'On', 'astronomy' ), 'off' => __( 'Off', 'astronomy' ), ), 'active_callback' => '', ) ) ); //---------------------------------------------------- // 2.6. Social Media //---------------------------------------------------- // Add Social Media Heading $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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 astronomy_customizer_customcontrol_section( $wp_customize, 'astronomy_section_socialmedia_heading', array( 'label' => __( 'Social Media Control', 'astronomy' ), 'section' => 'astronomy_customizer_section_socialmedia', 'settings' => 'astronomy_redux_variables[astronomy_section_socialmedia_heading]', 'active_callback' => '', ) ) ); // Add Enable Social Media Links (Header) Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_socialswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_switch( $wp_customize, 'astronomy_header_socialswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_header_socialswitch]', 'section' => 'astronomy_customizer_section_socialmedia', 'label' => __( 'Enable Social Media Links (header)', 'astronomy' ), 'description' => __( 'Switch on to enable links to social media pages.', 'astronomy' ), 'choices' => array( '1' => __( 'On', 'astronomy' ), 'off' => __( 'Off', 'astronomy' ), ), 'active_callback' => '', ) ) ); // Add Enable Social Media Links (footer) Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_socialswitchfooter]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_switch( $wp_customize, 'astronomy_header_socialswitchfooter', array( 'settings' => 'astronomy_redux_variables[astronomy_header_socialswitchfooter]', 'section' => 'astronomy_customizer_section_socialmedia', 'label' => __( 'Enable Social Media Links (footer)', 'astronomy' ), 'description' => __( 'Switch on to enable links to social media pages.', 'astronomy' ), 'choices' => array( '1' => __( 'On', 'astronomy' ), 'off' => __( 'Off', 'astronomy' ), ), 'active_callback' => '', ) ) ); // Add Social Media Content Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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 astronomy_customizer_customcontrol_section( $wp_customize, 'astronomy_section_header_social', array( 'settings' => 'astronomy_redux_variables[astronomy_section_header_social]', 'section' => 'astronomy_customizer_section_socialmedia', 'label' => __( 'Social Media Content', 'astronomy' ), 'active_callback' => '', ) ) ); // Add Display Message Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_socialmessage]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'astronomy_header_socialmessage', array( 'settings' => 'astronomy_redux_variables[astronomy_header_socialmessage]', 'section' => 'astronomy_customizer_section_socialmedia', 'type' => 'text', 'label' => __( 'Display Message', 'astronomy' ), 'description' => __( 'Add a message here. E.g. "Follow Us".
(Only shown in header)', 'astronomy' ), 'active_callback' => '', ) ); // Facebook social settings $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_facebookswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_switch( $wp_customize, 'astronomy_header_facebookswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_header_facebookswitch]', 'section' => 'astronomy_customizer_section_socialmedia', 'label' => __( 'Facebook', 'astronomy' ), 'description' => __( 'Enable link to Facebook profile.', 'astronomy' ), 'choices' => array( '1' => __( 'On', 'astronomy' ), 'off' => __( 'Off', 'astronomy' ), ), 'active_callback' => '', ) ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_facebooklink]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'astronomy_header_facebooklink', array( 'settings' => 'astronomy_redux_variables[astronomy_header_facebooklink]', 'section' => 'astronomy_customizer_section_socialmedia', 'type' => 'text', 'description' => __( 'Input the url to your Facebook page.', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_facebookiconswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_checkbox', ) ); $wp_customize->add_control( 'astronomy_header_facebookiconswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_header_facebookiconswitch]', 'section' => 'astronomy_customizer_section_socialmedia', 'type' => 'checkbox', 'label' => __( 'Custom Icon', 'astronomy' ), 'description' => __( 'Check to use custom Facebook icon', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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, 'astronomy_header_facebookcustomicon', array( 'settings' => 'astronomy_redux_variables[astronomy_header_facebookcustomicon][url]', 'section' => 'astronomy_customizer_section_socialmedia', 'description' => __( 'Add a link to the image or upload one from your desktop. The image will be resized.', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ) ); // Twitter social settings $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_twitterswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_switch( $wp_customize, 'astronomy_header_twitterswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_header_twitterswitch]', 'section' => 'astronomy_customizer_section_socialmedia', 'label' => __( 'Twitter', 'astronomy' ), 'description' => __( 'Enable link to Twitter profile.', 'astronomy' ), 'choices' => array( '1' => __( 'On', 'astronomy' ), 'off' => __( 'Off', 'astronomy' ), ), 'active_callback' => '', ) ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_twitterlink]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'astronomy_header_twitterlink', array( 'settings' => 'astronomy_redux_variables[astronomy_header_twitterlink]', 'section' => 'astronomy_customizer_section_socialmedia', 'type' => 'text', 'description' => __( 'Input the url to your Twitter page.', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_twittericonswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_checkbox', ) ); $wp_customize->add_control( 'astronomy_header_twittericonswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_header_twittericonswitch]', 'section' => 'astronomy_customizer_section_socialmedia', 'type' => 'checkbox', 'label' => __( 'Custom Icon', 'astronomy' ), 'description' => __( 'Check to use custom Twitter icon', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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, 'astronomy_header_twittercustomicon', array( 'settings' => 'astronomy_redux_variables[astronomy_header_twittercustomicon][url]', 'section' => 'astronomy_customizer_section_socialmedia', 'description' => __( 'Add a link to the image or upload one from your desktop. The image will be resized.', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ) ); // Google+ social settings $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_googleswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_switch( $wp_customize, 'astronomy_header_googleswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_header_googleswitch]', 'section' => 'astronomy_customizer_section_socialmedia', 'label' => __( 'Google+', 'astronomy' ), 'description' => __( 'Enable link to Google+ profile.', 'astronomy' ), 'choices' => array( '1' => __( 'On', 'astronomy' ), 'off' => __( 'Off', 'astronomy' ), ), 'active_callback' => '', ) ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_googlelink]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'astronomy_header_googlelink', array( 'settings' => 'astronomy_redux_variables[astronomy_header_googlelink]', 'section' => 'astronomy_customizer_section_socialmedia', 'type' => 'text', 'description' => __( 'Input the url to your Google+ page.', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_googleiconswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_checkbox', ) ); $wp_customize->add_control( 'astronomy_header_googleiconswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_header_googleiconswitch]', 'section' => 'astronomy_customizer_section_socialmedia', 'type' => 'checkbox', 'label' => __( 'Custom Icon', 'astronomy' ), 'description' => __( 'Check to use custom Google+ icon', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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, 'astronomy_header_googlecustomicon', array( 'settings' => 'astronomy_redux_variables[astronomy_header_googlecustomicon][url]', 'section' => 'astronomy_customizer_section_socialmedia', 'description' => __( 'Add a link to the image or upload one from your desktop. The image will be resized.', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ) ); // LinkedIn social settings $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_linkedinswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_switch( $wp_customize, 'astronomy_header_linkedinswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_header_linkedinswitch]', 'section' => 'astronomy_customizer_section_socialmedia', 'label' => __( 'LinkedIn', 'astronomy' ), 'description' => __( 'Enable link to LinkedIn profile.', 'astronomy' ), 'choices' => array( '1' => __( 'On', 'astronomy' ), 'off' => __( 'Off', 'astronomy' ), ), 'active_callback' => '', ) ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_linkedinlink]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'astronomy_header_linkedinlink', array( 'settings' => 'astronomy_redux_variables[astronomy_header_linkedinlink]', 'section' => 'astronomy_customizer_section_socialmedia', 'type' => 'text', 'description' => __( 'Input the url to your LinkedIn page.', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_linkediniconswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_checkbox', ) ); $wp_customize->add_control( 'astronomy_header_linkediniconswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_header_linkediniconswitch]', 'section' => 'astronomy_customizer_section_socialmedia', 'type' => 'checkbox', 'label' => __( 'Custom Icon', 'astronomy' ), 'description' => __( 'Check to use custom LinkedIn icon', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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, 'astronomy_header_linkedincustomicon', array( 'settings' => 'astronomy_redux_variables[astronomy_header_linkedincustomicon][url]', 'section' => 'astronomy_customizer_section_socialmedia', 'description' => __( 'Add a link to the image or upload one from your desktop. The image will be resized.', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ) ); // Flickr social settings $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_flickrswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_switch( $wp_customize, 'astronomy_header_flickrswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_header_flickrswitch]', 'section' => 'astronomy_customizer_section_socialmedia', 'label' => __( 'Flickr', 'astronomy' ), 'description' => __( 'Enable link to Flickr profile.', 'astronomy' ), 'choices' => array( '1' => __( 'On', 'astronomy' ), 'off' => __( 'Off', 'astronomy' ), ), 'active_callback' => '', ) ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_flickrlink]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'astronomy_header_flickrlink', array( 'settings' => 'astronomy_redux_variables[astronomy_header_flickrlink]', 'section' => 'astronomy_customizer_section_socialmedia', 'type' => 'text', 'description' => __( 'Input the url to your Flickr page.', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_flickriconswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_checkbox', ) ); $wp_customize->add_control( 'astronomy_header_flickriconswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_header_flickriconswitch]', 'section' => 'astronomy_customizer_section_socialmedia', 'type' => 'checkbox', 'label' => __( 'Custom Icon', 'astronomy' ), 'description' => __( 'Check to use custom Flickr icon', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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, 'astronomy_header_flickrcustomicon', array( 'settings' => 'astronomy_redux_variables[astronomy_header_flickrcustomicon][url]', 'section' => 'astronomy_customizer_section_socialmedia', 'description' => __( 'Add a link to the image or upload one from your desktop. The image will be resized.', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ) ); // YouTube social settings $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_youtubeswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_switch( $wp_customize, 'astronomy_header_youtubeswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_header_youtubeswitch]', 'section' => 'astronomy_customizer_section_socialmedia', 'label' => __( 'YouTube', 'astronomy' ), 'description' => __( 'Enable link to YouTube profile.', 'astronomy' ), 'choices' => array( '1' => __( 'On', 'astronomy' ), 'off' => __( 'Off', 'astronomy' ), ), 'active_callback' => '', ) ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_youtubelink]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'astronomy_header_youtubelink', array( 'settings' => 'astronomy_redux_variables[astronomy_header_youtubelink]', 'section' => 'astronomy_customizer_section_socialmedia', 'type' => 'text', 'description' => __( 'Input the url to your YouTube page.', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_youtubeiconswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_checkbox', ) ); $wp_customize->add_control( 'astronomy_header_youtubeiconswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_header_youtubeiconswitch]', 'section' => 'astronomy_customizer_section_socialmedia', 'type' => 'checkbox', 'label' => __( 'Custom Icon', 'astronomy' ), 'description' => __( 'Check to use custom YouTube icon', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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, 'astronomy_header_youtubecustomicon', array( 'settings' => 'astronomy_redux_variables[astronomy_header_youtubecustomicon][url]', 'section' => 'astronomy_customizer_section_socialmedia', 'description' => __( 'Add a link to the image or upload one from your desktop. The image will be resized.', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ) ); // RSS social settings $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_rssswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_switch', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_switch( $wp_customize, 'astronomy_header_rssswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_header_rssswitch]', 'section' => 'astronomy_customizer_section_socialmedia', 'label' => __( 'RSS', 'astronomy' ), 'description' => __( 'Enable link to RSS profile.', 'astronomy' ), 'choices' => array( '1' => __( 'On', 'astronomy' ), 'off' => __( 'Off', 'astronomy' ), ), 'active_callback' => '', ) ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_rsslink]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'astronomy_header_rsslink', array( 'settings' => 'astronomy_redux_variables[astronomy_header_rsslink]', 'section' => 'astronomy_customizer_section_socialmedia', 'type' => 'text', 'description' => __( 'Input the url to your RSS page.', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_header_rssiconswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_checkbox', ) ); $wp_customize->add_control( 'astronomy_header_rssiconswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_header_rssiconswitch]', 'section' => 'astronomy_customizer_section_socialmedia', 'type' => 'checkbox', 'label' => __( 'Custom Icon', 'astronomy' ), 'description' => __( 'Check to use custom RSS icon', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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, 'astronomy_header_rsscustomicon', array( 'settings' => 'astronomy_redux_variables[astronomy_header_rsscustomicon][url]', 'section' => 'astronomy_customizer_section_socialmedia', 'description' => __( 'Add a link to the image or upload one from your desktop. The image will be resized.', 'astronomy' ), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ) ); //---------------------------------------------------- // 2.7. Blog //---------------------------------------------------- // Add Blog Heading $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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 astronomy_customizer_customcontrol_section( $wp_customize, 'astronomy_section_blog_heading', array( 'label' => __( 'Control Blog (Archive) Pages', 'astronomy' ), 'section' => 'astronomy_customizer_section_blog', 'settings' => 'astronomy_redux_variables[astronomy_section_blog_heading]', 'active_callback' => '', ) ) ); // Add Blog Layout Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_blog_layout]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_radio_image( $wp_customize, 'astronomy_blog_layout', array( 'settings' => 'astronomy_redux_variables[astronomy_blog_layout]', 'section' => 'astronomy_customizer_section_blog', 'label' => __( 'Blog Layout', 'astronomy' ), 'description' => __( 'Select blog page layout. Only applied to the main blog page and not individual posts.', 'astronomy' ), '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( 'astronomy_redux_variables[astronomy_blog_sidebars]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_select_sidebar', ) ); $wp_customize->add_control( 'astronomy_blog_sidebars', array( 'settings' => 'astronomy_redux_variables[astronomy_blog_sidebars]', 'section' => 'astronomy_customizer_section_blog', 'type' => 'select', 'label' => __( 'Select a Sidebar', 'astronomy' ), 'description' => __( 'Note: Sidebars will not be applied to homepage Blog. Control sidebars on the homepage from the 'Home Settings' option.', 'astronomy' ), 'choices' => astronomy_customizer_select_array_sidebar(), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); // Add Post Content Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_blog_postswitch]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( 'astronomy_blog_postswitch', array( 'settings' => 'astronomy_redux_variables[astronomy_blog_postswitch]', 'section' => 'astronomy_customizer_section_blog', 'type' => 'radio', 'label' => __( 'Post Content', 'astronomy' ), '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.', 'astronomy' ), 'choices' => array( 'option1' => __( 'Show excerpt', 'astronomy' ), 'option2' => __( 'Show full article', 'astronomy' ), 'option3' => __( 'Hide article', 'astronomy' ), ) ) ); // Add Control Single Post Page Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_section_post_layout]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_section( $wp_customize, 'astronomy_section_post_layout', array( 'settings' => 'astronomy_redux_variables[astronomy_section_post_layout]', 'section' => 'astronomy_customizer_section_blog', 'label' => __( 'Control Single Post Page', 'astronomy' ), 'active_callback' => '', ) ) ); // Add Post Layout Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_post_layout]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( new astronomy_customizer_customcontrol_radio_image( $wp_customize, 'astronomy_post_layout', array( 'settings' => 'astronomy_redux_variables[astronomy_post_layout]', 'section' => 'astronomy_customizer_section_blog', 'label' => __( 'Post Layout', 'astronomy' ), 'description' => __( 'Select blog page layout. This will only be applied to individual posts and not the main blog page.', 'astronomy' ), '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( 'astronomy_redux_variables[astronomy_post_sidebars]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'astronomy_customizer_callback_sanitize_select_sidebar', ) ); $wp_customize->add_control( 'astronomy_post_sidebars', array( 'settings' => 'astronomy_redux_variables[astronomy_post_sidebars]', 'section' => 'astronomy_customizer_section_blog', 'type' => 'select', 'label' => __( 'Select a Sidebar', 'astronomy' ), 'description' => __( 'Choose a sidebar to use with the layout.', 'astronomy' ), 'choices' => astronomy_customizer_select_array_sidebar(), 'active_callback' => 'astronomy_customizer_callback_active_global', ) ); // Add Comment Style Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_post_commentstyle]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_key', ) ); $wp_customize->add_control( 'astronomy_post_commentstyle', array( 'settings' => 'astronomy_redux_variables[astronomy_post_commentstyle]', 'section' => 'astronomy_customizer_section_homepage', 'type' => 'radio', 'label' => __( 'Comment Style', 'astronomy' ), 'description' => __( 'Select a style for the comments section.', 'astronomy' ), 'choices' => array( 'option1' => 'Style 1', 'option2' => 'Style 2' ) ) ); //---------------------------------------------------- // 2.8. Upgrade Section (10% off) //---------------------------------------------------- // Add Upgrade Control $wp_customize->add_setting( 'astronomy_redux_variables[astronomy_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 astronomy_customizer_customcontrol_upgrade( $wp_customize, 'astronomy_upgrade_content', array( 'settings' => 'astronomy_redux_variables[astronomy_upgrade_content]', 'section' => 'astronomy_customizer_section_upgrade', 'upgrade_url' => '//www.astronomythemes.com/themes/astronomy/', 'price_discount' => __( 'Upgrade for $31 (10% off)', 'astronomy' ), 'price_normal' => __( 'Normally $35. Use coupon at checkout.', 'astronomy' ), 'coupon' => __( 'astronomy31', 'astronomy' ), 'button' => __( 'Upgrade Now', 'astronomy' ), 'title_main' => __( 'So… Why upgrade?', 'astronomy' ), 'title_secondary' => __( 'We're glad you asked! Here's just some of the amazing features you'll get when you upgrade…', 'astronomy' ), 'images' => array( '%s/admin/main/inc/controls/upgrade/img/1_trusted_team.png', '%s/admin/main/inc/controls/upgrade/img/2_page_builder.png', '%s/admin/main/inc/controls/upgrade/img/3_premium_support.png', '%s/admin/main/inc/controls/upgrade/img/4_theme_options.png', '%s/admin/main/inc/controls/upgrade/img/5_shortcodes.png', '%s/admin/main/inc/controls/upgrade/img/6_unlimited_colors.png', '%s/admin/main/inc/controls/upgrade/img/7_parallax_pages.png', '%s/admin/main/inc/controls/upgrade/img/8_typography.png', '%s/admin/main/inc/controls/upgrade/img/9_backgrounds.png', '%s/admin/main/inc/controls/upgrade/img/10_responsive.png', '%s/admin/main/inc/controls/upgrade/img/11_retina_ready.png', '%s/admin/main/inc/controls/upgrade/img/12_site_layout.png', '%s/admin/main/inc/controls/upgrade/img/13_translation_ready.png', '%s/admin/main/inc/controls/upgrade/img/14_rtl_support.png', '%s/admin/main/inc/controls/upgrade/img/15_infinite_sidebars.png', '%s/admin/main/inc/controls/upgrade/img/16_portfolios.png', '%s/admin/main/inc/controls/upgrade/img/17_seo_optimized.png', '%s/admin/main/inc/controls/upgrade/img/18_demo_content.png', ), 'active_callback' => '', ) ) ); } add_action( 'customize_register' , 'astronomy_customizer_theme_options' );