get_section( 'title_tagline' )->priority = 2; // check if exists in case user has no pages if ( is_object( $wp_customize->get_section( 'static_front_page' ) ) ) { $wp_customize->get_section( 'static_front_page' )->priority = 5; $wp_customize->get_section( 'static_front_page' )->title = __( 'Front Page', 'chosen' ); } /***** Add PostMessage Support *****/ $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; /***** Chosen Pro Control *****/ class ct_chosen_pro_ad extends WP_Customize_Control { public function render_content() { $link = 'https://www.competethemes.com/chosen-pro/'; echo ""; echo "

" . sprintf( __('Chosen Pro is the plugin that makes advanced customization simple - and fun too!', 'chosen'), $link) . "

"; echo "

" . __('Chosen Pro adds the following features to Chosen:', 'chosen') . "

"; echo ""; echo "

" . __('View Chosen Pro', 'chosen') . "

"; } } /***** Chosen Pro Section *****/ // don't add if Chosen Pro is active if ( !function_exists( 'ct_chosen_pro_init' ) ) { // section $wp_customize->add_section( 'ct_chosen_pro', array( 'title' => __( 'Chosen Pro', 'chosen' ), 'priority' => 1 ) ); // Upload - setting $wp_customize->add_setting( 'chosen_pro', array( 'sanitize_callback' => 'absint' ) ); // Upload - control $wp_customize->add_control( new ct_chosen_pro_ad( $wp_customize, 'chosen_pro', array( 'section' => 'ct_chosen_pro', 'settings' => 'chosen_pro' ) ) ); } /***** Logo Upload *****/ // section $wp_customize->add_section( 'ct_chosen_logo_upload', array( 'title' => __( 'Logo', 'chosen' ), 'priority' => 20 ) ); // setting $wp_customize->add_setting( 'logo_upload', array( 'sanitize_callback' => 'esc_url_raw' ) ); // control $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'logo_image', array( 'label' => __( 'Upload custom logo.', 'chosen' ), 'section' => 'ct_chosen_logo_upload', 'settings' => 'logo_upload' ) ) ); /***** Social Media Icons *****/ // get the social sites array $social_sites = ct_chosen_social_array(); // set a priority used to order the social sites $priority = 5; // section $wp_customize->add_section( 'ct_chosen_social_media_icons', array( 'title' => __( 'Social Media Icons', 'chosen' ), 'priority' => 25, 'description' => __( 'Add the URL for each of your social profiles.', 'chosen' ) ) ); // create a setting and control for each social site foreach ( $social_sites as $social_site => $value ) { // if email icon if ( $social_site == 'email' ) { // setting $wp_customize->add_setting( $social_site, array( 'sanitize_callback' => 'ct_chosen_sanitize_email' ) ); // control $wp_customize->add_control( $social_site, array( 'label' => __( 'Email Address', 'chosen' ), 'section' => 'ct_chosen_social_media_icons', 'priority' => $priority ) ); } else { $label = ucfirst( $social_site ); if ( $social_site == 'google-plus' ) { $label = 'Google Plus'; } elseif ( $social_site == 'rss' ) { $label = 'RSS'; } elseif ( $social_site == 'soundcloud' ) { $label = 'SoundCloud'; } elseif ( $social_site == 'slideshare' ) { $label = 'SlideShare'; } elseif ( $social_site == 'codepen' ) { $label = 'CodePen'; } elseif ( $social_site == 'stumbleupon' ) { $label = 'StumbleUpon'; } elseif ( $social_site == 'deviantart' ) { $label = 'DeviantArt'; } elseif ( $social_site == 'hacker-news' ) { $label = 'Hacker News'; } elseif ( $social_site == 'whatsapp' ) { $label = 'WhatsApp'; } elseif ( $social_site == 'qq' ) { $label = 'QQ'; } elseif ( $social_site == 'vk' ) { $label = 'VK'; } elseif ( $social_site == 'wechat' ) { $label = 'WeChat'; } elseif ( $social_site == 'tencent-weibo' ) { $label = 'Tencent Weibo'; } elseif ( $social_site == 'paypal' ) { $label = 'PayPal'; } elseif ( $social_site == 'email-form' ) { $label = 'Contact Form'; } if ( $social_site == 'skype' ) { // setting $wp_customize->add_setting( $social_site, array( 'sanitize_callback' => 'ct_chosen_sanitize_skype' ) ); // control $wp_customize->add_control( $social_site, array( 'type' => 'url', 'label' => $label, 'description' => sprintf( __( 'Accepts Skype link protocol (learn more)', 'chosen' ), 'https://www.competethemes.com/blog/skype-links-wordpress/' ), 'section' => 'ct_chosen_social_media_icons', 'priority' => $priority ) ); } else { // setting $wp_customize->add_setting( $social_site, array( 'sanitize_callback' => 'esc_url_raw' ) ); // control $wp_customize->add_control( $social_site, array( 'type' => 'url', 'label' => $label, 'section' => 'ct_chosen_social_media_icons', 'priority' => $priority ) ); } } // increment the priority for next site $priority = $priority + 5; } /***** Search Bar *****/ // section $wp_customize->add_section( 'chosen_search_bar', array( 'title' => __( 'Search Bar', 'chosen' ), 'priority' => 37 ) ); // setting $wp_customize->add_setting( 'search_bar', array( 'default' => 'hide', 'sanitize_callback' => 'ct_chosen_sanitize_all_show_hide_settings' ) ); // control $wp_customize->add_control( 'search_bar', array( 'type' => 'radio', 'label' => __( 'Show search bar at top of site?', 'chosen' ), 'section' => 'chosen_search_bar', 'setting' => 'search_bar', 'choices' => array( 'show' => __( 'Show', 'chosen' ), 'hide' => __( 'Hide', 'chosen' ) ), ) ); /***** Blog *****/ // section $wp_customize->add_section( 'chosen_blog', array( 'title' => __( 'Blog', 'chosen' ), 'priority' => 45 ) ); // setting $wp_customize->add_setting( 'full_post', array( 'default' => 'no', 'sanitize_callback' => 'ct_chosen_sanitize_yes_no_settings' ) ); // control $wp_customize->add_control( 'full_post', array( 'label' => __( 'Show full posts on blog?', 'chosen' ), 'section' => 'chosen_blog', 'settings' => 'full_post', 'type' => 'radio', 'choices' => array( 'yes' => __( 'Yes', 'chosen' ), 'no' => __( 'No', 'chosen' ) ) ) ); // setting $wp_customize->add_setting( 'excerpt_length', array( 'default' => '25', 'sanitize_callback' => 'absint' ) ); // control $wp_customize->add_control( 'excerpt_length', array( 'label' => __( 'Excerpt word count', 'chosen' ), 'section' => 'chosen_blog', 'settings' => 'excerpt_length', 'type' => 'number' ) ); // Read More text - setting $wp_customize->add_setting( 'read_more_text', array( 'default' => __( 'Continue Reading', 'chosen' ), 'sanitize_callback' => 'ct_chosen_sanitize_text' ) ); // Read More text - control $wp_customize->add_control( 'read_more_text', array( 'label' => __( 'Read More button text', 'chosen' ), 'section' => 'chosen_blog', 'settings' => 'read_more_text', 'type' => 'text' ) ); /***** Additional Options *****/ // section $wp_customize->add_section( 'chosen_additional', array( 'title' => __( 'Additional Options', 'chosen' ), 'priority' => 70 ) ); // extra-wide post - setting $wp_customize->add_setting( 'full_width_post', array( 'default' => 'yes', 'sanitize_callback' => 'ct_chosen_sanitize_yes_no_settings' ) ); // extra-wide post - control $wp_customize->add_control( 'full_width_post', array( 'label' => __( 'Make first post on blog extra wide?', 'chosen' ), 'section' => 'chosen_additional', 'settings' => 'full_width_post', 'type' => 'radio', 'choices' => array( 'yes' => __( 'Yes', 'chosen' ), 'no' => __( 'No', 'chosen' ) ) ) ); // author byline - setting $wp_customize->add_setting( 'author_byline', array( 'default' => 'no', 'sanitize_callback' => 'ct_chosen_sanitize_yes_no_settings' ) ); // author byline - control $wp_customize->add_control( 'author_byline', array( 'label' => __( 'Display post author name in byline?', 'chosen' ), 'section' => 'chosen_additional', 'settings' => 'author_byline', 'type' => 'radio', 'choices' => array( 'yes' => __( 'Yes', 'chosen' ), 'no' => __( 'No', 'chosen' ) ) ) ); /***** Custom CSS *****/ if ( function_exists( 'wp_update_custom_css_post' ) ) { // Migrate any existing theme CSS to the core option added in WordPress 4.7. $css = get_theme_mod( 'custom_css' ); if ( $css ) { $core_css = wp_get_custom_css(); // Preserve any CSS already added to the core option. $return = wp_update_custom_css_post( $core_css . $css ); if ( ! is_wp_error( $return ) ) { // Remove the old theme_mod, so that the CSS is stored in only one place moving forward. remove_theme_mod( 'custom_css' ); } } } else { // section $wp_customize->add_section( 'chosen_custom_css', array( 'title' => __( 'Custom CSS', 'chosen' ), 'priority' => 75 ) ); // setting $wp_customize->add_setting( 'custom_css', array( 'sanitize_callback' => 'ct_chosen_sanitize_css', 'transport' => 'postMessage' ) ); // control $wp_customize->add_control( 'custom_css', array( 'type' => 'textarea', 'label' => __( 'Add Custom CSS Here:', 'chosen' ), 'section' => 'chosen_custom_css', 'settings' => 'custom_css' ) ); } } /***** Custom Sanitization Functions *****/ /* * Sanitize settings with show/hide as options * Used in: search bar */ function ct_chosen_sanitize_all_show_hide_settings( $input ) { $valid = array( 'show' => __( 'Show', 'chosen' ), 'hide' => __( 'Hide', 'chosen' ) ); return array_key_exists( $input, $valid ) ? $input : ''; } /* * sanitize email address * Used in: Social Media Icons */ function ct_chosen_sanitize_email( $input ) { return sanitize_email( $input ); } // sanitize yes/no settings function ct_chosen_sanitize_yes_no_settings( $input ) { $valid = array( 'yes' => __( 'Yes', 'chosen' ), 'no' => __( 'No', 'chosen' ), ); return array_key_exists( $input, $valid ) ? $input : ''; } function ct_chosen_sanitize_text( $input ) { return wp_kses_post( force_balance_tags( $input ) ); } function ct_chosen_sanitize_skype( $input ) { return esc_url_raw( $input, array( 'http', 'https', 'skype' ) ); } function ct_chosen_sanitize_css( $css ) { $css = wp_kses( $css, array( '\'', '\"' ) ); $css = str_replace( '>', '>', $css ); return $css; }