OwlCyberSecurity - MANAGER
Edit File: settings.php
<?php /** * Head & Footer Code General Settings page template * * @category Template * @package Head_Footer_Code * @author Aleksandar Urosevic * @license https://www.gnu.org/copyleft/gpl-3.0.html GNU General Public License v3.0 * @link https://urosevic.net * @link https://www.techwebux.com */ // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } ?> <div class="wrap" id="head_footer_code_settings"> <h1 class="wp-heading-inline"> <?php echo esc_html( sprintf( /* translators: Plugin name */ __( '%s Settings', 'head-footer-code' ), HFC_PLUGIN_NAME ) ); ?> <span class="ver">v. <?php echo esc_html( HFC_VER ); ?></span> <span class="actions long-header"> <a href="https://wordpress.org/plugins/head-footer-code/#faq" class="page-title-action" target="_blank"><?php esc_html_e( 'FAQ', 'head-footer-code' ); ?></a> <a href="https://wordpress.org/support/plugin/head-footer-code/" class="page-title-action" target="_blank"><?php esc_html_e( 'Community Support', 'head-footer-code' ); ?></a> <a href="https://wordpress.org/support/plugin/head-footer-code/reviews/#new-post" class="page-title-action" target="_blank"> <?php echo esc_html( sprintf( /* translators: %s will be replaced with plugin name Head & Footer Code */ __( 'Review %s', 'head-footer-code' ), HFC_PLUGIN_NAME ) ); ?> </a> </span> </h1> <form method="post" action="options.php"> <?php settings_fields( 'head_footer_code_settings' ); do_settings_sections( HFC_PLUGIN_SLUG ); submit_button(); ?> </form> </div> <script type="text/javascript"> jQuery(document).ready(function($) { $('#head_footer_code_settings .codeEditor').each( function(index, value) { wp.codeEditor.initialize(this, cm_settings); }); }); </script>