# wp-coder/4.3.1/includes/settings/options/html-code.php

WP Coder – Insert &amp; Manage Code Snippets, version 4.3.1. 26 lines.

- Page: https://pluginprobe.com/plugins/wp-coder/4.3.1/code/includes/settings/options/html-code.php
- Raw: https://pluginprobe.com/plugins/wp-coder/4.3.1/raw/includes/settings/options/html-code.php
- Modified: 2025-09-24T14:20:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-coder/4.3.1/code/includes/settings/options/html-code.php#L10-L20`.

```php
<?php

defined( 'ABSPATH' ) || exit;

return [

	'preview' => [
		'type'  => 'checkbox',
		'name'  => '[preview]',
		'title' => __( 'Live Preview', 'wp-coder' ),
		'text'  => __( 'Enable', 'wp-coder' ),
		'class' => 'is-reverse',
		'tooltip' => __( 'Enable to preview your HTML and CSS in real time.', 'wp-coder' ),
	],

	'minified' => [
		'type'  => 'checkbox',
		'name'  => '[minified_html]',
		'title' => __( 'Minified', 'wp-coder' ),
		'text'  => __( 'Enable', 'wp-coder' ),
		'class' => 'is-reverse',
		'tooltip' => __( 'Minify the HTML output for better performance.', 'wp-coder' ),
	],

];

```
