PluginProbe
SpiceBox / 0.6
SpiceBox v0.6
trunk 0.2.2 0.2.3 0.2.4 0.2.5 0.2.6 0.2.7 0.2.8 0.2.9 0.3 0.3.1 0.3.2 0.3.3 0.3.4 0.3.5 0.3.6 0.3.7 0.3.8 0.3.9.1 0.3.9.2 0.4 0.5 0.6 0.7 1.0 All 76 releases
spicebox / inc / spicepress / customizer.php

customizer.php in SpiceBox 0.6, at inc/spicepress/customizer.php

16 lines 500 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! function_exists( 'spiceb_customize_register' ) ) :
3 /**
4 * Spicepress Customize Register
5 */
6
7 function spiceb_customize_register( $wp_customize ) {
8 $spicepress_features_content_control = $wp_customize->get_setting( 'spicepress_service_content' );
9 if ( ! empty( $spicepress_features_content_control ) ) {
10 $spicepress_features_content_control->default = spiceb_spicepress_get_service_default();
11 }
12 }
13
14 add_action( 'customize_register', 'spiceb_customize_register' );
15 endif;
16 ?>