File: /home/httpd/vhosts/rajlaw.com.tw/httpdocs/wp-content/themes/celestium/inc/customizer.php
<?php
/**
* Customizer
*
* @package WordPress
* @subpackage celestium
* @since celestium 1.0
*/
/**
* Add postMessage support for site title and description for the Theme Customizer.
*
* @param WP_Customize_Manager $wp_customize Theme Customizer object.
*/
function celestium_customize_register( $wp_customize ) {
$wp_customize->add_section( new Celestium_Upsell_Section($wp_customize,'upsell_section',array(
'title' => __( 'Celestium Pro', 'celestium' ),
'button_text' => __( 'Upgrade Pro', 'celestium' ),
'url' => esc_url( CELESTIUM_BUY_NOW ),
'priority' => 0,
)));
}
add_action( 'customize_register', 'celestium_customize_register' );
/**
* Enqueue script for custom customize control.
*/
function celestium_custom_control_scripts() {
wp_enqueue_script( 'celestium-custom-controls-js', get_template_directory_uri() . '/assets/js/custom-controls.js', array( 'jquery', 'jquery-ui-core', 'jquery-ui-sortable' ), '1.0', true );
}
add_action( 'customize_controls_enqueue_scripts', 'celestium_custom_control_scripts' );