PluginProbe
WP Coder – Insert & Manage Code Snippets / 2.4.1
WP Coder – Insert & Manage Code Snippets v2.4.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
wp-coder / admin / partials / add-new / html_code.php

html_code.php in WP Coder – Insert & Manage Code Snippets 2.4.1, at admin/partials/add-new/html_code.php

30 lines 750 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * HTML Code
4 *
5 * @package Wow_Plugin
6 * @copyright Copyright (c) 2018, Dmytro Lobov
7 * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8 * @since 1.0
9 */
10
11 if ( ! defined( 'ABSPATH' ) ) exit;
12
13 $html_code = array(
14 'id' => 'html_code',
15 'name' => 'content_html',
16 'type' => 'textarea',
17 'val' => isset( $param['content_html'] ) ? $param['content_html'] : '',
18 );
19 $html_code_help = array (
20 'text' => __('Enter your HTML code', 'wpcoder'),
21 );
22
23 ?>
24
25 <div class="wow-container">
26 <div class="wow-element">
27 <?php _e('HTML Code', 'wpcoder'); ?> <?php echo self::tooltip( $html_code_help ); ?>
28 <?php echo self::option( $html_code ); ?>
29 </div>
30 </div>