File: /home/alfouzantranspor/www/wp-content/themes/production-factory/inc/customizer.php
<?php
/**
* Customizer
*
* @package WordPress
* @subpackage production-factory
* @since production-factory 1.0
*/
/**
* Add postMessage support for site title and description for the Theme Customizer.
*
* @param WP_Customize_Manager $wp_customize Theme Customizer object.
*/
function production_factory_customize_register( $wp_customize ) {
$wp_customize->add_section( new Production_Factory_Upsell_Section($wp_customize,'upsell_section',array(
'title' => __( 'Production Factory Pro', 'production-factory' ),
'button_text' => __( 'Upgrade Pro', 'production-factory' ),
'url' => 'https://www.wpradiant.net/products/factory-wordpress-theme',
'priority' => 0,
)));
}
add_action( 'customize_register', 'production_factory_customize_register' );
/**
* Enqueue script for custom customize control.
*/
function production_factory_custom_control_scripts() {
wp_enqueue_script( 'production-factory-custom-controls-js', get_template_directory_uri() . '/assets/js/custom-controls.js', array( 'jquery', 'jquery-ui-core', 'jquery-ui-sortable' ), '1.0', true );
wp_enqueue_style( 'production-factory-customize-controls', trailingslashit( get_template_directory_uri() ) . '/assets/css/customize-controls.css' );
}
add_action( 'customize_controls_enqueue_scripts', 'production_factory_custom_control_scripts' );