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

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

- Page: https://pluginprobe.com/plugins/wp-coder/4.5/code/includes/settings/options/css-code.php
- Raw: https://pluginprobe.com/plugins/wp-coder/4.5/raw/includes/settings/options/css-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/css-code.php#L10-L20`.

```php
<?php

defined( 'ABSPATH' ) || exit;

return [

	'inline' => [
		'type'  => 'checkbox',
		'name'  => '[inline_css]',
		'title' => __( 'Inline', 'wp-coder' ),
		'text'  => __( 'Enable', 'wp-coder' ),
		'class' => 'is-reverse',
		'tooltip' => __( 'Load CSS inline instead of from an external file.', 'wp-coder' ),
	],

	'minified' => [
		'type'  => 'checkbox',
		'name'  => '[minified_css]',
		'title' => __( 'Minified', 'wp-coder' ),
		'text'  => __( 'Enable', 'wp-coder' ),
		'class' => 'is-reverse',
		'tooltip' => __( 'Compress CSS by removing spaces and line breaks.', 'wp-coder' ),
	],

	'css_code' => [
		'type'  => 'textarea',
		'name'  => 'css_code',
		'class' => 'is-full'
	],

];
```
