HEX
Server: LiteSpeed
System: Linux rocket-da1.hostsila.org 4.18.0-553.84.1.lve.el8.x86_64 #1 SMP Tue Nov 25 18:33:03 UTC 2025 x86_64
User: pvowtcbu (1561)
PHP: 8.1.33
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/pvowtcbu/public_html/wp-content/plugins/head-footer-code/templates/settings.php
<?php
/**
 * General plugin settings page template.
 *
 * @package    Head_Footer_Code
 * @category   Template
 * @since      1.0.0
 */

// If this file is called directly, abort.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

?>
<div class="wrap" id="head_footer_code_settings">
	<h1 class="wp-heading-inline">
		<?php
		printf(
			/* translators: Plugin name */
			esc_html__( '%s Settings', 'head-footer-code' ),
			esc_html( $this->plugin->name )
		);
		?>
		<span class="ver">v. <?php echo esc_html( $this->plugin->version ); ?></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>
		</span>
	</h1>
	<form method="post" action="options.php">
	<?php
		settings_fields( 'head_footer_code_settings' );
		settings_errors();
		do_settings_sections( $this->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>