![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/matelopsrp.com/wp-content/themes/master-business/inc/ |
<?php /** * Theme Customizer. * * @package Master_Business */ /** * Add postMessage support for site title and description for the Theme Customizer. * * @since 1.0.0 * * @param WP_Customize_Manager $wp_customize Theme Customizer object. */ function master_business_customize_register( $wp_customize ) { // Load custom controls. require get_template_directory() . '/inc/customizer/control.php'; // Load customize helpers. require get_template_directory() . '/inc/helper/options.php'; // Load customize sanitize. require get_template_directory() . '/inc/customizer/sanitize.php'; // Load customize callback. require get_template_directory() . '/inc/customizer/callback.php'; $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; // Load customize option. require get_template_directory() . '/inc/customizer/option.php'; // Load slider customize option. require get_template_directory() . '/inc/customizer/slider.php'; // Modify default customizer options. $wp_customize->get_control( 'background_color' )->description = esc_html__( 'Note: Background Color is applicable only if no image is set as Background Image.', 'master-business' ); // Register custom section types. $wp_customize->register_section_type( 'Master_Business_Customize_Section_Upsell' ); // Register sections. $wp_customize->add_section( new Master_Business_Customize_Section_Upsell( $wp_customize, 'theme_upsell', array( 'title' => esc_html__( 'Master Business Pro', 'master-business' ), 'pro_text' => esc_html__( 'Buy Pro', 'master-business' ), 'pro_url' => 'https://themepalace.com/downloads/master-business-pro/', 'priority' => 1, ) ) ); } add_action( 'customize_register', 'master_business_customize_register' ); /** * Customizer partials. * * @since 1.0.0 */ function master_business_customizer_partials( WP_Customize_Manager $wp_customize ) { // Abort if selective refresh is not available. if ( ! isset( $wp_customize->selective_refresh ) ) { $wp_customize->get_setting( 'blogname' )->transport = 'refresh'; $wp_customize->get_setting( 'blogdescription' )->transport = 'refresh'; $wp_customize->get_setting( 'theme_options[copyright_text]' )->transport = 'refresh'; return; } // Load customizer partials callback. require get_template_directory() . '/inc/customizer/partials.php'; // Partial blogname. $wp_customize->selective_refresh->add_partial( 'blogname', array( 'selector' => '.site-title a', 'container_inclusive' => false, 'render_callback' => 'master_business_customize_partial_blogname', ) ); // Partial blogdescription. $wp_customize->selective_refresh->add_partial( 'blogdescription', array( 'selector' => '.site-description', 'container_inclusive' => false, 'render_callback' => 'master_business_customize_partial_blogdescription', ) ); // Partial copyright_text. $wp_customize->selective_refresh->add_partial( 'copyright_text', array( 'selector' => '#colophon .copyright', 'container_inclusive' => false, 'settings' => array( 'theme_options[copyright_text]' ), 'render_callback' => 'master_business_render_partial_copyright_text', ) ); } add_action( 'customize_register', 'master_business_customizer_partials', 99 ); /** * Customizer control scripts and styles. * * @since 1.0.0 */ function master_business_customizer_control_scripts() { $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; wp_enqueue_script( 'master-business-customize-controls', get_template_directory_uri() . '/js/customize-controls' . $min . '.js', array( 'customize-controls' ) ); wp_enqueue_style( 'master-business-customize-controls', get_template_directory_uri() . '/css/customize-controls' . $min . '.css' ); } add_action( 'customize_controls_enqueue_scripts', 'master_business_customizer_control_scripts', 0 );