# customify/1.7.3/settings/css_editor.php

Customify, version 1.7.3. 28 lines.

- Page: https://pluginprobe.com/plugins/customify/1.7.3/code/settings/css_editor.php
- Raw: https://pluginprobe.com/plugins/customify/1.7.3/raw/settings/css_editor.php
- Modified: 2018-06-28T08:47:00+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/customify/1.7.3/code/settings/css_editor.php#L10-L20`.

```php
<?php
//not used yet - moved them to a per gallery option

return array(
	'type'    => 'postbox',
	'label'   => 'CSS Editor',
	'options' => array(
		'css_editor'   => array(
			'label'          => __( 'Enable CSS Editor', 'customify' ),
			'default'        => true,
			'type'           => 'switch',
			'show_group'     => 'css_editor_group',
			'display_option' => true
		),

		'css_editor_group' => array(
			'type'    => 'group',
			'options' => array(
				'css_editor_use_ace' => array(
					'name'    => 'typography_standard_fonts',
					'label'   => __( 'Use Ace Editor?', 'customify' ),
					'default' => true,
					'type'    => 'switch',
				)
			)
		)
	)
); # config
```
