PluginProbe
WP Coder – Insert & Manage Code Snippets / 3.4
WP Coder – Insert & Manage Code Snippets v3.4
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/js-code.php +6 -13 4.5.13.4 View file →
@@ -6,28 +6,23 @@
6 6
7 7 'jquery' => [
8 8 'type' => 'checkbox',
9 9 'name' => '[jquery_dependency]',
10 - 'title' => __( 'Disable jQuery', 'wp-coder' ),
11 - 'text' => __( 'Disable', 'wp-coder' ),
12 - 'class' => 'is-reverse',
13 - 'tooltip' => __( 'Don’t include jQuery as a dependency for this script.', 'wp-coder' ),
10 + 'title' => __( 'JQuery Dependency', 'wpcoder' ),
11 + 'text' => __( 'Disable', 'wpcoder' ),
14 12 ],
15 13
16 14 'inline' => [
17 15 'type' => 'checkbox',
18 16 'name' => '[inline_js]',
19 - 'title' => __( 'Inline', 'wp-coder' ),
20 - 'text' => __( 'Enable', 'wp-coder' ),
21 - 'class' => 'is-reverse',
22 - 'tooltip' => __( 'Insert JavaScript directly into the page.', 'wp-coder' ),
23 -
17 + 'title' => __( 'Inline', 'wpcoder' ),
18 + 'text' => __( 'Enable', 'wpcoder' ),
24 19 ],
25 20
26 21 'minified' => [
27 22 'type' => 'select',
28 23 'name' => '[minified_js]',
29 - 'title' => __( 'Minified', 'wp-coder' ),
24 + 'title' => __( 'Minified', 'floating-button' ),
30 25 'default' => 'obfuscate',
31 26 'options' => [
32 27 'none' => 'none',
33 28 'minify' => 'Minify',
@@ -32,21 +27,19 @@
32 27 'none' => 'none',
33 28 'minify' => 'Minify',
34 29 'obfuscate' => 'Obfuscate'
35 30 ],
36 - 'tooltip' => __( 'Choose how to minimize or obfuscate the JavaScript code.', 'wp-coder' ),
37 31 ],
38 32
39 33 'attributes' => [
40 34 'type' => 'select',
41 35 'name' => '[js_attributes]',
42 - 'title' => __( 'Attribute', 'wp-coder' ),
36 + 'title' => __( 'Attribute', 'floating-button' ),
43 37 'options' => [
44 38 0 => 'none',
45 39 'defer' => 'defer',
46 40 'async' => 'async'
47 41 ],
48 - 'tooltip' => __( 'Specify how the script should be loaded.', 'wp-coder' ),
49 42 ],
50 43
51 44 'js_code' => [
52 45 'type' => 'textarea',