PluginProbe
WP Coder – Insert & Manage Code Snippets / 4.1
WP Coder – Insert & Manage Code Snippets v4.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 / includes / settings / options / css-code.php

css-code.php in WP Coder – Insert & Manage Code Snippets 4.1, at includes/settings/options/css-code.php

31 lines 688 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 defined( 'ABSPATH' ) || exit;
4
5 return [
6
7 'inline' => [
8 'type' => 'checkbox',
9 'name' => '[inline_css]',
10 'title' => __( 'Inline', 'wp-coder' ),
11 'text' => __( 'Enable', 'wp-coder' ),
12 'class' => 'is-reverse',
13 'tooltip' => __( 'Load CSS inline instead of from an external file.', 'wp-coder' ),
14 ],
15
16 'minified' => [
17 'type' => 'checkbox',
18 'name' => '[minified_css]',
19 'title' => __( 'Minified', 'wp-coder' ),
20 'text' => __( 'Enable', 'wp-coder' ),
21 'class' => 'is-reverse',
22 'tooltip' => __( 'Compress CSS by removing spaces and line breaks.', 'wp-coder' ),
23 ],
24
25 'css_code' => [
26 'type' => 'textarea',
27 'name' => 'css_code',
28 'class' => 'is-full'
29 ],
30
31 ];