| Server IP : 51.91.236.255 / Your IP : 216.73.217.120 Web Server : Apache System : Linux webm017.cluster129.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : laureet ( 1012854) PHP Version : 8.0.30 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/laureet/www/wp-content/themes/rock-singer/inc/ |
Upload File : |
<?php
/**
* Rock Singer Theme Customizer
*
* @package Rock Singer
*/
/**
* Add postMessage support for site title and description for the Theme Customizer.
*
* @param WP_Customize_Manager $wp_customize Theme Customizer object.
*/
function rock_singer_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( 'rock_singer_Customize_Section_Upsell' );
// Register sections.
$wp_customize->add_section(
new rock_singer_Customize_Section_Upsell(
$wp_customize,
'theme_upsell',
array(
'title' => esc_html__( 'Rock Singer', 'rock-singer' ),
'pro_text' => esc_html__( 'Buy Pro', 'rock-singer' ),
'pro_url' => 'http://www.creativthemes.com/downloads/rock-singer-pro/',
'priority' => 10,
)
)
);
// Load customize sanitize.
include get_template_directory() . '/inc/customizer/sanitize.php';
// Load customize sanitize.
include get_template_directory() . '/inc/customizer/active-callback.php';
// Load header sections option.
include get_template_directory() . '/inc/customizer/theme-section.php';
// Load home page sections option.
include get_template_directory() . '/inc/customizer/home-section.php';
}
add_action( 'customize_register', 'rock_singer_customize_register' );
/**
* Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
*/
function rock_singer_customize_preview_js() {
wp_enqueue_script( 'rock_singer_customizer', get_template_directory_uri() . '/inc/customizer/js/customizer.js', array( 'customize-preview' ), '20151215', true );
}
add_action( 'customize_preview_init', 'rock_singer_customize_preview_js' );
/**
*
*/
function rock_singer_customize_backend_scripts() {
wp_enqueue_style( 'rock-singer-fontawesome-all', get_template_directory_uri() . '/assets/css/all.css' );
wp_enqueue_style( 'rock-singer-admin-customizer-style', get_template_directory_uri() . '/inc/customizer/css/customizer-style.css' );
wp_enqueue_script( 'rock-singer-admin-customizer', get_template_directory_uri() . '/inc/customizer/js/customizer-script.js', array( 'jquery', 'customize-controls' ), '20151215', true );
}
add_action( 'customize_controls_enqueue_scripts', 'rock_singer_customize_backend_scripts', 10 );