| 1 |
<?php |
| 2 |
/* |
| 3 |
* Page Name: PHP |
| 4 |
*/ |
| 5 |
|
| 6 |
use WPCoder\Dashboard\Field; |
| 7 |
|
| 8 |
defined( 'ABSPATH' ) || exit; |
| 9 |
?> |
| 10 |
|
| 11 |
<h4> |
| 12 |
<span class="codericon codericon-filetype-php"></span> |
| 13 |
<?php esc_html_e( 'PHP Code', 'wpcoder' ); ?> |
| 14 |
</h4> |
| 15 |
|
| 16 |
<div class="wowp-field is-full wowp-code-nav"> |
| 17 |
<ol id="phpNavigationMenu" class="wowp-php-nav-menu"></ol> |
| 18 |
<span class="button-editor" id="phpnav">Add NAV Comment</span> |
| 19 |
</div> |
| 20 |
|
| 21 |
<?php Field::textarea( 'php_code' ); ?> |
| 22 |
|
| 23 |
<div class="wowp-notification -warning"> |
| 24 |
Please input only the PHP content, omitting the <code>php</code> tag |
| 25 |
</div> |
| 26 |
|
| 27 |
<?php |
| 28 |
|
| 29 |
|
| 30 |
|