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

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

- Page: https://pluginprobe.com/plugins/wp-coder/4.5/code/includes/settings/options/html-code.php
- Raw: https://pluginprobe.com/plugins/wp-coder/4.5/raw/includes/settings/options/html-code.php
- Modified: 2026-02-14T05:39:58+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.5/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' ),
	],

];

```
