| 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 |
?> |