get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; $wp_customize->get_section( 'colors' )->panel = 'architect_contractor_theme_colors_panel'; $wp_customize->get_section( 'colors' )->title = esc_html__('Color Options','architect-contractor'); $wp_customize->get_section( 'title_tagline' )->panel = 'architect_contractor_theme_general_settings'; $wp_customize->get_section( 'header_image' )->panel = 'architect_contractor_theme_general_settings'; $wp_customize->get_section( 'background_image' )->panel = 'architect_contractor_theme_general_settings'; if ( isset( $wp_customize->selective_refresh ) ) { $wp_customize->selective_refresh->add_partial( 'blogname', array( 'selector' => '.header-titles .custom-logo-name', 'render_callback' => 'architect_contractor_customize_partial_blogname', ) ); $wp_customize->selective_refresh->add_partial( 'blogdescription', array( 'selector' => '.site-description', 'render_callback' => 'architect_contractor_customize_partial_blogdescription', ) ); } $wp_customize->add_panel( 'architect_contractor_theme_general_settings', array( 'title' => esc_html__( 'General Settings', 'architect-contractor' ), 'priority' => 10, 'capability' => 'edit_theme_options', ) ); $wp_customize->add_panel( 'architect_contractor_theme_colors_panel', array( 'title' => esc_html__( 'Color Settings', 'architect-contractor' ), 'priority' => 15, 'capability' => 'edit_theme_options', ) ); // Theme Options Panel. $wp_customize->add_panel( 'architect_contractor_theme_footer_option_panel', array( 'title' => esc_html__( 'Footer Settings', 'architect-contractor' ), 'priority' => 150, 'capability' => 'edit_theme_options', ) ); // Template Options $wp_customize->add_panel( 'architect_contractor_theme_home_pannel', array( 'title' => esc_html__( 'Frontpage Settings', 'architect-contractor' ), 'priority' => 150, 'capability' => 'edit_theme_options', ) ); // Theme Addons Panel. $wp_customize->add_panel( 'architect_contractor_theme_addons_panel', array( 'title' => esc_html__( 'Theme Addons', 'architect-contractor' ), 'priority' => 5, 'capability' => 'edit_theme_options', ) ); // Theme Options Panel. $wp_customize->add_panel( 'architect_contractor_theme_option_panel', array( 'title' => esc_html__( 'Theme Options', 'architect-contractor' ), 'priority' => 5, 'capability' => 'edit_theme_options', ) ); $wp_customize->add_setting('architect_contractor_logo_width_range', array( 'default' => $architect_contractor_default['architect_contractor_logo_width_range'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'architect_contractor_sanitize_number_range', ) ); $wp_customize->add_control('architect_contractor_logo_width_range', array( 'label' => esc_html__('Logo width', 'architect-contractor'), 'description' => esc_html__( 'Specify the range for logo size with a minimum of 200px and a maximum of 700px, in increments of 20px.', 'architect-contractor' ), 'section' => 'title_tagline', 'type' => 'range', 'input_attrs' => array( 'min' => 200, 'max' => 700, 'step' => 20, ), ) ); // Register custom section types. $wp_customize->register_section_type( 'Architect_Contractor_Customize_Section_Upsell' ); // Register sections. $wp_customize->add_section( new Architect_Contractor_Customize_Section_Upsell( $wp_customize, 'theme_upsell', array( 'title' => esc_html__( 'Architect Contractor Pro', 'architect-contractor' ), 'pro_text' => esc_html__( 'Upgrade To Pro', 'architect-contractor' ), 'pro_url' => esc_url('https://www.omegathemes.com/products/contractor-wordpress-theme'), 'priority' => 1, ) ) ); // Register second custom section (Buy Bundle) $wp_customize->add_section( new Architect_Contractor_Customize_Section_Upsell( $wp_customize, 'theme_upsell_bundle', array( 'title' => esc_html__( 'Buy WP Theme Bundle', 'architect-contractor' ), 'pro_text' => esc_html__( 'Get Bundle', 'architect-contractor' ), 'pro_url' => esc_url( 'https://www.omegathemes.com/products/wp-theme-bundle' ), 'priority' => 2, ) ) ); } endif; add_action( 'customize_register', 'architect_contractor_customize_register' ); /** * Customizer Enqueue scripts and styles. */ if (!function_exists('architect_contractor_customizer_scripts')) : function architect_contractor_customizer_scripts(){ wp_enqueue_script('jquery-ui-button'); wp_enqueue_style('architect-contractor-customizer', get_template_directory_uri() . '/lib/custom/css/customizer.css'); wp_enqueue_script('architect-contractor-customizer', get_template_directory_uri() . '/lib/custom/js/customizer.js', array('jquery','customize-controls'), '', 1); $ajax_nonce = wp_create_nonce('architect_contractor_ajax_nonce'); wp_localize_script( 'architect-contractor-customizer', 'architect_contractor_customizer', array( 'ajax_url' => esc_url( admin_url( 'admin-ajax.php' ) ), 'ajax_nonce' => $ajax_nonce, ) ); } endif; add_action('customize_controls_enqueue_scripts', 'architect_contractor_customizer_scripts'); add_action('customize_controls_init', 'architect_contractor_customizer_scripts'); function architect_contractor_customize_preview_js() { wp_enqueue_script( 'architect-contractor-customizer-preview', get_template_directory_uri() . '/lib/custom/js/customizer-preview.js', array( 'customize-preview' ), '', true ); } add_action( 'customize_preview_init', 'architect_contractor_customize_preview_js' ); if (!function_exists('architect_contractor_customize_partial_blogname')) : function architect_contractor_customize_partial_blogname() { bloginfo( 'name' ); } endif; if (!function_exists('architect_contractor_customize_partial_blogdescription')) : function architect_contractor_customize_partial_blogdescription() { bloginfo( 'description' ); } endif;