| 1 |
<?php |
| 2 |
/* |
| 3 |
* Page Name: HTML |
| 4 |
*/ |
| 5 |
|
| 6 |
use WPCoder\Dashboard\Field; |
| 7 |
|
| 8 |
defined( 'ABSPATH' ) || exit; |
| 9 |
?> |
| 10 |
|
| 11 |
<h4> |
| 12 |
<span class="codericon codericon-filetype-html"></span> |
| 13 |
<?php |
| 14 |
esc_html_e( 'HTML Code', 'wpcoder' ); ?> |
| 15 |
</h4> |
| 16 |
|
| 17 |
<div class="wowp-field is-full wowp-code-nav"> |
| 18 |
<ol id="htmlNavigationMenu" class="wowp-php-nav-menu"></ol> |
| 19 |
<span class="button-editor" id="htmlnav">Add NAV Comment</span> |
| 20 |
</div> |
| 21 |
|
| 22 |
<?php Field::textarea( 'html_code' ); ?> |
| 23 |
|
| 24 |
<div class="wowp-notification -info"> |
| 25 |
Please provide only the inner HTML content, excluding the <code>html</code> and <code>body</code> tags. The page |
| 26 |
already contains these tags, and your code will be inserted within the <code>body</code> tag directly. |
| 27 |
</div> |
| 28 |
|
| 29 |
<?php |
| 30 |
|
| 31 |
|