# wp-coder/4.3/includes/settings/options/includes.php

WP Coder – Insert &amp; Manage Code Snippets, version 4.3. 57 lines.

- Page: https://pluginprobe.com/plugins/wp-coder/4.3/code/includes/settings/options/includes.php
- Raw: https://pluginprobe.com/plugins/wp-coder/4.3/raw/includes/settings/options/includes.php
- Modified: 2025-09-10T08:14:34+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/code/includes/settings/options/includes.php#L10-L20`.

```php
<?php

defined( 'ABSPATH' ) || exit;

return [

	'include' => [
		'type'    => 'select',
		'name'    => '[include]',
		'title'   => __( 'Type', 'wp-coder' ),
		'options' => [ 'css' => 'css', 'js' => 'js' ],
		'class' => 'display-option',
	],

	'include_file' => [
		'type'  => 'url',
		'name'  => '[include_file]',
		'title' => __( 'URL', 'wp-coder' ),
	],

	'css_only_preview' => [
		'type'    => 'checkbox',
		'name'    => '[css_only_preview]',
		'title'   => __( 'Preview Only', 'wp-coder' ),
		'text'  => __( 'Enable', 'wp-coder' ),
		'class' => 'is-reverse css-only-preview',
		'tooltip' => __( 'This CSS file will be used only in the Live Preview. It won’t be included on the actual website.', 'wp-coder' ),
	],

	'js_attr' => [
		'type'  => 'select',
		'name'  => '[file_js_att]',
		'title' => __( 'Attribute', 'wp-coder' ),
		'options' => [
			0       => 'none',
			'defer' => 'defer',
			'async' => 'async'
		],
		'class' => 'js-attr',
	],

	'dequeue' => [
		'type'    => 'select',
		'name'    => '[dequeue]',
		'title'   => __( 'Type', 'wp-coder' ),
		'options' => [ 'css' => 'css', 'js' => 'js' ],
		'class' => 'display-option',
	],

	'handle' => [
		'type'  => 'text',
		'name'  => '[handle]',
		'title' => __( 'ID', 'wp-coder' ),
	],


];
```
