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

SpiceBox, version 0.2.9. 16 lines.

- Page: https://pluginprobe.com/plugins/spicebox/0.2.9/code/inc/spicepress/customizer.php
- Raw: https://pluginprobe.com/plugins/spicebox/0.2.9/raw/inc/spicepress/customizer.php
- Modified: 2018-05-26T07:49:18+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.2.9/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;
?>
```
