📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 21:54:27
📂
/ (Root)
/
home
/
apkbfjox
/
jilievogame.net
/
wp-content
/
plugins
/
gp-premium
/
library
/
customizer
/
controls
📍 /home/apkbfjox/jilievogame.net/wp-content/plugins/gp-premium/library/customizer/controls
🔄 Refresh
✏️
Editing: class-title-control.php
Writable
<?php // No direct access, please if ( ! defined( 'ABSPATH' ) ) { exit; } if ( class_exists( 'WP_Customize_Control' ) && ! class_exists( 'GeneratePress_Title_Customize_Control' ) ) : /** * Create a control to display titles within our sections */ class GeneratePress_Title_Customize_Control extends WP_Customize_Control { public $type = 'generatepress-customizer-title'; public $title = ''; public function enqueue() { wp_enqueue_style( 'generatepress-title-customize-control', trailingslashit( plugin_dir_url( __FILE__ ) ) . 'css/title-customizer.css', array(), GP_PREMIUM_VERSION ); } public function to_json() { parent::to_json(); $this->json[ 'title' ] = esc_html( $this->title ); } public function content_template() { ?> <div class="generatepress-customizer-title"> <span>{{ data.title }}</span> </div> <?php } } endif;
💾 Save Changes
❌ Cancel