PluginProbe
WP Coder – Insert & Manage Code Snippets / 3.1.1
WP Coder – Insert & Manage Code Snippets v3.1.1
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
← All changes | includes/settings/1.html-code.php +14 -3 3.0.13.1.1 View file →
@@ -1,7 +1,7 @@
1 1 <?php
2 2 /*
3 - * Page Name: HTML Code
3 + * Page Name: HTML
4 4 */
5 5
6 6 use WPCoder\Dashboard\Field;
7 7
@@ -8,12 +8,23 @@
8 8 defined( 'ABSPATH' ) || exit;
9 9 ?>
10 10
11 11 <h4>
12 - <span class="wowp-icon wowp-icon-html5"></span>
13 - <?php esc_html_e( 'HTML Code', 'wpcoder' ); ?>
12 + <span class="codericon codericon-filetype-html"></span>
13 + <?php
14 + esc_html_e( 'HTML Code', 'wpcoder' ); ?>
14 15 </h4>
15 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 +
16 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>
17 28
18 29 <?php
19 30