# customify/2.2.0/settings/output.php

Customify, version 2.2.0. 33 lines.

- Page: https://pluginprobe.com/plugins/customify/2.2.0/code/settings/output.php
- Raw: https://pluginprobe.com/plugins/customify/2.2.0/raw/settings/output.php
- Modified: 2017-02-13T16:26:40+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/2.2.0/code/settings/output.php#L10-L20`.

```php
<?php


$output_settings = array(
	'type'    => 'postbox',
	'label'   => 'Output Settings',
	'options' => array(
		'style_resources_location' => array(
			'name'    => 'style_resources_location',
			'label'   => __( 'Styles location:', 'customify' ),
			'desc'    => __( 'Here you can decide where to put your style output, in header or footer', 'customify' ),
			'default' => 'wp_footer',
			'type'    => 'select',
			'options' => array(
				'wp_head'    => __( "In header (just before the head tag)", 'customify' ),
				'wp_footer' => __( "Footer (just before the end of the body tag)", 'customify' ),
			),
		),
//		'script_resources_location' => array(
//			'name'    => 'script_resources_location',
//			'label'   => __( 'Script location:', 'customify' ),
//			'desc'    => __( 'Here you can decide where to put your scripts output, in header or footer', 'customify' ),
//			'default' => 'wp_footer',
//			'type'    => 'select',
//			'options' => array(
//				'wp_head'    => __( 'In <head> (just before </head>', 'customify' ),
//				'wp_footer' => __( 'Footer (just before </body>)', 'customify' ),
//			)
//		)
	)
); # config

return $output_settings;
```
