| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/YTLStockManagement/wp-content/plugins/wp-coder/includes/settings/ |
Upload File : |
<?php
/*
* Page Name: HTML
*/
use WPCoder\Dashboard\Field;
use WPCoder\Dashboard\Option;
defined( 'ABSPATH' ) || exit;
$default = Field::getDefault();
$opt = include( 'options/html-code.php' );
$options = get_option( '_wp_coder_tools', [] );
?>
<div class="wowp-settings__page">
<div class="wowp-settings__page-sidebar">
<?php Option::init( [
$opt['preview'],
] ); ?>
<button class="button button-add-img"><?php esc_html_e( 'Add Image', 'wp-coder' ); ?></button>
<?php Option::init( [
$opt['minified'],
] ); ?>
<button class="button-editor button"
id="htmlnav"><?php esc_html_e( 'Add NAV Comment', 'wp-coder' ); ?></button>
<ol id="htmlNavigationMenu" class="wowp-php-nav-menu"></ol>
</div>
<div class="wowp-settings__page-content">
<?php Field::textarea( 'html_code' ); ?>
<div class="wowp-notification notification-info">
Just enter the HTML content. You don’t need to include <code><html></code> or
<code><body></code> — it's already on the page.
</div>
</div>
</div>
<?php