get_setting('blogname')->transport = 'postMessage'; $wp_customize->get_setting('blogdescription')->transport = 'postMessage'; $wp_customize->get_setting('header_textcolor')->transport = 'postMessage'; $wp_customize->get_control('background_color')->label = __('Body Background Color', 'morenews'); if (isset($wp_customize->selective_refresh)) { $wp_customize->selective_refresh->add_partial('blogname', array( 'selector' => '.site-title a', 'render_callback' => 'morenews_customize_partial_blogname', )); $wp_customize->selective_refresh->add_partial('blogdescription', array( 'selector' => '.site-description', 'render_callback' => 'morenews_customize_partial_blogdescription', )); } $default = morenews_get_default_theme_options(); // Setting - secondary_font. $wp_customize->add_setting( 'site_title_font_size', array( 'default' => $default['site_title_font_size'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'site_title_font_size', array( 'label' => __('Site Title Size', 'morenews'), 'section' => 'title_tagline', 'type' => 'number', 'priority' => 50, ) ); // Setting - header overlay. $wp_customize->add_setting( 'site_title_uppercase', array( 'default' => $default['site_title_uppercase'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'morenews_sanitize_checkbox', ) ); $wp_customize->add_control( 'site_title_uppercase', array( 'label' => __('Uppercase Site Title and Tagline', 'morenews'), 'section' => 'title_tagline', 'type' => 'checkbox', 'priority' => 50, ) ); $wp_customize->get_section('header_image')->panel = 'site_header_option_panel'; // use get control $wp_customize->get_control('header_textcolor')->label = __('Site Title/Tagline Color', 'morenews'); $wp_customize->get_control('header_textcolor')->section = 'colors'; $wp_customize->get_control('header_textcolor')->section = 'colors'; $wp_customize->get_control('header_textcolor')->priority = 5; // Setting - header_image. $wp_customize->get_control('header_image')->section = 'header_builder'; $wp_customize->get_control('header_image')->priority = 10; // Setting - select_main_banner_section_mode. $wp_customize->add_setting( 'select_header_image_mode', array( 'default' => $default['select_header_image_mode'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'morenews_sanitize_select', ) ); $wp_customize->add_control( 'select_header_image_mode', array( 'label' => __('Header Image Mode', 'morenews'), 'description' => __('Image visibility may vary as per the mode', 'morenews'), 'section' => 'header_builder', 'type' => 'select', 'choices' => array( 'above' => __("Above Site Title", 'morenews'), 'default' => __("Set as Background", 'morenews'), 'full' => __("Show Full Image (Background)", 'morenews'), ), 'priority' => 50 ) ); // Setting - header overlay. $wp_customize->add_setting( 'disable_header_image_tint_overlay', array( 'default' => $default['disable_header_image_tint_overlay'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'morenews_sanitize_checkbox', ) ); $wp_customize->add_control( 'disable_header_image_tint_overlay', array( 'label' => __('Disable Image Tint/Overlay', 'morenews'), 'section' => 'header_builder', 'type' => 'checkbox', 'priority' => 50, 'active_callback' => 'morenews_disable_header_image_tint_overlay_status' ) ); /*theme option panel info*/ require get_template_directory() . '/inc/customizer/theme-options.php'; // Register custom section types. $wp_customize->register_section_type('MoreNews_Customize_Section_Upsell'); // Register sections. $wp_customize->add_section( new MoreNews_Customize_Section_Upsell( $wp_customize, 'theme_upsell', array( 'title' => __('MoreNews Pro', 'morenews'), 'pro_text' => __('Upgrade Now', 'morenews'), 'pro_url' => 'https://www.afthemes.com/products/morenews-pro/', 'priority' => 1, ) ) ); } add_action('customize_register', 'morenews_customize_register'); /** * Render the site title for the selective refresh partial. * * @return void */ function morenews_customize_partial_blogname() { bloginfo('name'); } /** * Render the site tagline for the selective refresh partial. * * @return void */ function morenews_customize_partial_blogdescription() { bloginfo('description'); } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function morenews_customize_preview_js() { wp_enqueue_script('morenews-customizer', get_template_directory_uri() . '/js/customizer.js', array('customize-preview'), '20151215', true); } add_action('customize_preview_init', 'morenews_customize_preview_js'); function morenews_customizer_css() { wp_enqueue_script('morenews-customize-controls', get_template_directory_uri() . '/assets/customizer-admin.js', array('customize-controls')); wp_enqueue_style('morenews-customize-controls-style', get_template_directory_uri() . '/assets/customizer-admin.css'); } add_action('customize_controls_enqueue_scripts', 'morenews_customizer_css', 0);