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

WP Coder – Insert &amp; Manage Code Snippets, version 3.1.1. 27 lines.

- Page: https://pluginprobe.com/plugins/wp-coder/3.1.1/code/includes/settings/options/css-code.php
- Raw: https://pluginprobe.com/plugins/wp-coder/3.1.1/raw/includes/settings/options/css-code.php
- Modified: 2023-11-13T15:27:26+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/3.1.1/code/includes/settings/options/css-code.php#L10-L20`.

```php
<?php

defined( 'ABSPATH' ) || exit;

return [

	'inline' => [
		'type'  => 'checkbox',
		'name'  => '[inline_css]',
		'title' => __( 'Inline', 'wpcoder' ),
		'text'  => __( 'Enable', 'wpcoder' ),
	],

	'minified' => [
		'type'  => 'checkbox',
		'name'  => '[minified_css]',
		'title' => __( 'Minified', 'wpcoder' ),
		'text'  => __( 'Enable', 'wpcoder' ),
	],

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

];
```
