PluginProbe
Customify / 1.5.1
Customify v1.5.1
2.10.9 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.7.1 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.6.0 1.6.0.1 1.6.5 1.7.0 1.7.1 All 77 releases
customify / settings / output.php

output.php in Customify 1.5.1, at settings/output.php

33 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3
4 $output_settings = array(
5 'type' => 'postbox',
6 'label' => 'Output Settings',
7 'options' => array(
8 'style_resources_location' => array(
9 'name' => 'style_resources_location',
10 'label' => __( 'Styles location:', 'customify' ),
11 'desc' => __( 'Here you can decide where to put your style output, in header or footer', 'customify' ),
12 'default' => 'wp_footer',
13 'type' => 'select',
14 'options' => array(
15 'wp_head' => __( "In header (just before the head tag)", 'customify' ),
16 'wp_footer' => __( "Footer (just before the end of the body tag)", 'customify' ),
17 ),
18 ),
19 // 'script_resources_location' => array(
20 // 'name' => 'script_resources_location',
21 // 'label' => __( 'Script location:', 'customify' ),
22 // 'desc' => __( 'Here you can decide where to put your scripts output, in header or footer', 'customify' ),
23 // 'default' => 'wp_footer',
24 // 'type' => 'select',
25 // 'options' => array(
26 // 'wp_head' => __( 'In <head> (just before </head>', 'customify' ),
27 // 'wp_footer' => __( 'Footer (just before </body>)', 'customify' ),
28 // )
29 // )
30 )
31 ); # config
32
33 return $output_settings;