![]() 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/claquemagazineawards.com/wp-content/themes/eventbell/inc/ |
<?php /** * EventBell Theme Customizer * * @package EventBell */ /** * Add postMessage support for site title and description for the Theme Customizer. * * @param WP_Customize_Manager $wp_customize Theme Customizer object. */ function eventbell_customize_register( $wp_customize ) { $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; // Register custom section types. $wp_customize->register_section_type( 'EventBell_Customize_Section_Upsell' ); // Register sections. $wp_customize->add_section( new EventBell_Customize_Section_Upsell( $wp_customize, 'theme_upsell', array( 'title' => esc_html__( 'EventBell Pro', 'eventbell' ), 'pro_text' => esc_html__( 'Buy Pro', 'eventbell' ), 'pro_url' => 'http://www.sensationaltheme.com/downloads/eventbell-pro/', 'priority' => 10, ) ) ); // Add Panel. $wp_customize->add_panel( 'theme_option_panel', array( 'title' => __( 'Theme Options', 'eventbell' ), 'priority' => 100, 'capability' => 'edit_theme_options', ) ); // Load customize sanitize. include get_template_directory() . '/inc/customizer/sanitize.php'; // Load customize options. include get_template_directory() . '/inc/customizer/options.php'; // Load customize control. include get_template_directory() . '/inc/customizer/control.php'; // Load customize sanitize. include get_template_directory() . '/inc/customizer/active-callback.php'; // Load header sections option. include get_template_directory() . '/inc/customizer/theme-option/footer.php'; // Load header sections option. include get_template_directory() . '/inc/customizer/theme-option/general.php'; // Load header sections option. include get_template_directory() . '/inc/customizer/theme-option/header-image.php'; // Load header sections option. include get_template_directory() . '/inc/customizer/theme-option/latest.php'; // Load home page sections option. include get_template_directory() . '/inc/customizer/home-section.php'; } add_action( 'customize_register', 'eventbell_customize_register' ); /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function eventbell_customize_preview_js() { wp_enqueue_script( 'eventbell_customizer', get_template_directory_uri() . '/inc/customizer/js/customizer.js', array( 'customize-preview' ), '20151215', true ); } add_action( 'customize_preview_init', 'eventbell_customize_preview_js' ); /** * */ function eventbell_customize_backend_scripts() { wp_enqueue_style( 'eventbell-admin-customizer-style', get_template_directory_uri() . '/inc/customizer/css/customizer-style.css' ); wp_enqueue_script( 'eventbell-admin-customizer', get_template_directory_uri() . '/inc/customizer/js/customizer-scipt.js', array( 'jquery', 'customize-controls' ), '20151215', true ); } add_action( 'customize_controls_enqueue_scripts', 'eventbell_customize_backend_scripts', 10 );