HEX
Server: Apache
System: Linux cp4.skywebbox.com 5.14.0-503.15.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Nov 28 07:25:19 EST 2024 x86_64
User: alfouzantranspor (1054)
PHP: 8.3.23
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/alfouzantranspor/public_html/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' );