# spicebox/0.3.3/inc/spicepress/customizer.php

SpiceBox, version 0.3.3. 16 lines.

- Page: https://pluginprobe.com/plugins/spicebox/0.3.3/code/inc/spicepress/customizer.php
- Raw: https://pluginprobe.com/plugins/spicebox/0.3.3/raw/inc/spicepress/customizer.php
- Modified: 2018-10-16T06:27: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/spicebox/0.3.3/code/inc/spicepress/customizer.php#L10-L20`.

```php
<?php
if ( ! function_exists( 'spiceb_customize_register' ) ) :
	/**
	 * Spicepress Customize Register
	 */
	 
	function spiceb_customize_register( $wp_customize ) {
		$spicepress_features_content_control = $wp_customize->get_setting( 'spicepress_service_content' );
		if ( ! empty( $spicepress_features_content_control ) ) {
			$spicepress_features_content_control->default = spiceb_spicepress_get_service_default();
	}
	}

	add_action( 'customize_register', 'spiceb_customize_register' );
endif;
?>
```
