| 1 |
<?php |
| 2 |
|
| 3 |
defined( 'ABSPATH' ) || exit; |
| 4 |
|
| 5 |
return [ |
| 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 |
|
| 16 |
'minified' => [ |
| 17 |
'type' => 'checkbox', |
| 18 |
'name' => '[minified_html]', |
| 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' ), |
| 23 |
], |
| 24 |
|
| 25 |
]; |
| 26 |
|