PluginProbe
WP Coder – Insert & Manage Code Snippets / 3.3
WP Coder – Insert & Manage Code Snippets v3.3
4.5.1 1.1 2.3.1 2.3.2 2.4.1 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1 3.1.1 3.2 3.2.1 3.3 3.4 3.5 3.5.1 All 39 releases
wp-coder / includes / settings / 4.php-code.php

4.php-code.php in WP Coder – Insert & Manage Code Snippets 3.3, at includes/settings/4.php-code.php

32 lines 655 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 <fieldset>
17 <div class="wowp-field is-full">
18 <ol id="phpNavigationMenu" class="wowp-php-nav-menu"></ol>
19 <button class="button-editor button" id="phpnav">Add NAV Comment</button>
20 </div>
21 </fieldset>
22
23 <?php Field::textarea( 'php_code' ); ?>
24
25 <div class="wowp-notification -warning">
26 Please input only the PHP content, omitting the <code>php</code> tag
27 </div>
28
29 <?php
30
31
32