Initial commit
This commit is contained in:
@ -0,0 +1,32 @@
|
||||
<?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;
|
Reference in New Issue
Block a user