cl01/wp-content/plugins/enlighter/views/admin/customizer/Stylesheet.phtml
2025-02-24 12:39:24 +08:00

15 lines
772 B
PHTML
Executable File

<?php if (!defined('ENLIGHTER_INIT')) die('DIRECT ACCESS PROHIBITED'); ?>
<!-- RAW CSS -->
<div class="postbox enlighter-postbox">
<h3 class="hndle"><span><?php _e('Stylesheet', 'enlighter'); ?></span></h3>
<div class="inside enlighter-setting-section">
<h4><?php _e('RAW Stylesheet', 'enlighter'); ?></h4>
<p>The following styles are generated by the customizer and can be directly copied into your own theme for persistency (for advanced users only!).</p>
<?php
$raw = esc_html($this->_themeCustomizer->loadCustomizerConfig());
?>
<textarea readonly="readonly" name="enlighter-customizer" style="width: 100%; height: 700px" id="enlighterjs-customizer-exchange"><?php echo $raw ?></textarea>
</div>
</div>