PluginProbe
WP Coder – Insert & Manage Code Snippets / trunk
WP Coder – Insert & Manage Code Snippets vtrunk
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/options/html-code.php +13 -2 3.4trunk View file →
@@ -3,12 +3,23 @@
3 3 defined( 'ABSPATH' ) || exit;
4 4
5 5 return [
6 6
7 + 'preview' => [
8 + 'type' => 'checkbox',
9 + 'name' => '[preview]',
10 + 'title' => __( 'Live Preview', 'wp-coder' ),
11 + 'text' => __( 'Enable', 'wp-coder' ),
12 + 'class' => 'is-reverse',
13 + 'tooltip' => __( 'Enable to preview your HTML and CSS in real time.', 'wp-coder' ),
14 + ],
15 +
7 16 'minified' => [
8 17 'type' => 'checkbox',
9 18 'name' => '[minified_html]',
10 - 'title' => __( 'Minified', 'wpcoder' ),
11 - 'text' => __( 'Enable', 'wpcoder' ),
19 + 'title' => __( 'Minified', 'wp-coder' ),
20 + 'text' => __( 'Enable', 'wp-coder' ),
21 + 'class' => 'is-reverse',
22 + 'tooltip' => __( 'Minify the HTML output for better performance.', 'wp-coder' ),
12 23 ],
13 24
14 25 ];