golden hour
/home/phakp/public_html/wp/wp-content/themes/vogue/customizer/customizer-library/custom-controls
⬆️ Go Up
Upload
File/Folder
Size
Actions
imageselect.php
1.57 KB
Del
OK
note.php
805 B
Del
OK
textarea.php
749 B
Del
OK
Edit: note.php
<?php /** * Customize for note button, extend the WP customizer * * @package Customizer_Library * @author Devin Price, The Theme Foundry */ if ( ! class_exists( 'WP_Customize_Control' ) ) { return NULL; } class Customizer_Library_Note extends WP_Customize_Control { /** * Render the control's content. * * Allows the content to be overriden without having to rewrite the wrapper. * * @since 1.0.0 * @return void */ public function render_content() { $theme = wp_get_theme(); $theme_name = $theme->get( 'TextDomain' ); ?> <div class="kaira-note <?php echo ( is_child_theme() ) ? 'hide ' . sanitize_html_class( 'vogue-note-' . $theme_name ) : ''; ?>"> <div class="kaira-note-desc"><?php echo wp_kses_post( $this->description ); ?></div> </div> <?php } }
Save