golden hour
/home/phakp/public_html/wp/wp-content/themes/elicit/includes
⬆️ Go Up
Upload
File/Folder
Size
Actions
customizer-controls.php
781 B
Del
OK
customizer-styles.php
5.49 KB
Del
OK
customizer.php
9.54 KB
Del
OK
widgets
-
Del
OK
Edit: customizer-controls.php
<?php /*-----------------------------------------------------------------------------------*/ /* elicit Lite Customizer Controls /*-----------------------------------------------------------------------------------*/ class elicit_Lite_Misc_Control extends WP_Customize_Control { public $settings = 'blogname'; public $description = ''; public $group = ''; /** * Render the description and title for the sections */ public function render_content() { switch ( $this->type ) { default: case 'heading': echo '<span class="customize-control-title">' . $this->title . '</span>'; break; case 'custom_message' : echo '<p class="description">' . $this->description . '</p>'; break; case 'hr' : echo '<hr />'; break; } } }
Save