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

WP Coder – Insert &amp; Manage Code Snippets, version 3.1.1. 31 lines.

- Page: https://pluginprobe.com/plugins/wp-coder/3.1.1/code/includes/settings/1.html-code.php
- Raw: https://pluginprobe.com/plugins/wp-coder/3.1.1/raw/includes/settings/1.html-code.php
- Modified: 2023-11-13T15:27:26+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.1.1/code/includes/settings/1.html-code.php#L10-L20`.

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

use WPCoder\Dashboard\Field;

defined( 'ABSPATH' ) || exit;
?>

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

    <div class="wowp-field is-full wowp-code-nav">
        <ol id="htmlNavigationMenu" class="wowp-php-nav-menu"></ol>
        <span class="button-editor" id="htmlnav">Add NAV Comment</span>
    </div>

<?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


```
