pro_text; $json['pro_url'] = esc_url( $this->pro_url ); return $json; } protected function render_template() { ?>
  • {{ data.title }} <# if ( data.pro_text && data.pro_url ) { #> {{ data.pro_text }} <# } #>

  • setup_actions(); } return $instance; } /** * Constructor method. */ private function __construct() {} /** * Sets up initial actions. */ private function setup_actions() { // Register panels, sections, settings, controls, and partials. add_action( 'customize_register', array( $this, 'sections' ) ); // Register scripts and styles for the controls. add_action( 'customize_controls_enqueue_scripts', array( $this, 'enqueue_control_scripts' ), 0 ); } /** * Sets up the customizer sections. */ public function sections( $manager ) { // Load custom sections. // Register custom section types. $manager->register_section_type( 'artgallery_Customize_Section_Pro' ); // Register sections. $manager->add_section( new artgallery_Customize_Section_Pro( $manager, 'artgallery', array( 'title' => esc_html__( 'ArtGalleryPro', 'artgallery' ), 'pro_text' => esc_html__( 'Upgrade to Pro', 'artgallery' ), 'pro_url' => esc_url( 'https://customizablethemes.com/product/artgallerypro' ) ) ) ); } /** * Loads theme customizer CSS. */ public function enqueue_control_scripts() { wp_enqueue_script( 'artgallery-customize-controls', trailingslashit( get_template_directory_uri() ) . 'inc/customize-pro/customize-controls.js', array( 'customize-controls' ) ); wp_enqueue_style( 'artgallery-customize-controls', trailingslashit( get_template_directory_uri() ) . 'inc/customize-pro/customize-controls.css' ); } } // Doing this customizer thang! artgallery_Customize::get_instance();