# wp-coder/3.3/includes/settings/1.html-code.php

WP Coder – Insert &amp; Manage Code Snippets, version 3.3. 50 lines.

- Page: https://pluginprobe.com/plugins/wp-coder/3.3/code/includes/settings/1.html-code.php
- Raw: https://pluginprobe.com/plugins/wp-coder/3.3/raw/includes/settings/1.html-code.php
- Modified: 2024-01-02T10:14:58+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-coder/3.3/code/includes/settings/1.html-code.php#L10-L20`.

```php
<?php
/*
 * Page Name: HTML
 */

use WPCoder\Dashboard\Field;
use WPCoder\Dashboard\Option;

defined( 'ABSPATH' ) || exit;

$default = Field::getDefault();
$opt     = include( 'options/html-code.php' );

?>

    <h4>
        <span class="codericon codericon-filetype-html"></span>
		<?php
		esc_html_e( 'HTML Code', 'wpcoder' ); ?>
    </h4>

    <fieldset>
        <legend><?php esc_html_e( 'Settings', 'wpcoder' ); ?></legend>
		<?php Option::init( [
			$opt['minified'],
		] ); ?>

    </fieldset>

    <fieldset>
        <div class="wowp-field">
            <ol id="htmlNavigationMenu" class="wowp-php-nav-menu"></ol>
            <button class="button-editor button" id="htmlnav">Add NAV Comment</button>
        </div>
        <div class="wowp-field add-img-btn _m-is-auto">
            <button class="button button-primary button-add-img">Add Image</button>
        </div>
    </fieldset>


<?php Field::textarea( 'html_code' ); ?>

    <div class="wowp-notification -info">
        Please provide only the inner HTML content, excluding the <code>html</code> and <code>body</code> tags. The page
        already contains these tags, and your code will be inserted within the <code>body</code> tag directly.
    </div>

<?php


```
