(function( $ ) {
wp.customize.bind( 'ready', function() {
var optPrefix = '#customize-control-cake_shop_bakery_options-';
// Label
function cake_shop_bakery_customizer_label( id, title ) {
// Colors
if ( id === 'background_color' || id === 'background_image' ) {
$( '#customize-control-'+ id ).before('
'+ title +'');
} else {
$( '#customize-control-cake_shop_bakery_options-'+ id ).before(''+ title +'');
}
// Site Identity
if ( id === 'custom_logo' || id === 'site_icon' ) {
$( '#customize-control-'+ id ).before(''+ title +'');
} else {
$( '#customize-control-cake_shop_bakery_options-'+ id ).before(''+ title +'');
}
// General Setting
if ( id === 'cake_shop_bakery_preloader_hide' || id === 'cake_shop_bakery_sticky_header' || id === 'cake_shop_bakery_scroll_hide' ) {
$( '#customize-control-'+ id ).before(''+ title +'');
} else {
$( '#customize-control-cake_shop_bakery_options-'+ id ).before(''+ title +'');
}
// Slider
if ( id === 'cake_shop_bakery_slider_setting' ) {
$( '#customize-control-'+ id ).before(''+ title +'');
} else {
$( '#customize-control-cake_shop_bakery_options-'+ id ).before(''+ title +'');
}
// Featured Product
if ( id === 'cake_shop_bakery_new_product_setting' ) {
$( '#customize-control-'+ id ).before(''+ title +'');
} else {
$( '#customize-control-cake_shop_bakery_options-'+ id ).before(''+ title +'');
}
// Header Image
if ( id === 'header_image' ) {
$( '#customize-control-'+ id ).before(''+ title +'');
} else {
$( '#customize-control-cake_shop_bakery_options-'+ id ).before(''+ title +'');
}
// Footer
if ( id === 'cake_shop_bakery_footer_text_setting' ) {
$( '#customize-control-'+ id ).before(''+ title +'');
} else {
$( '#customize-control-cake_shop_bakery_options-'+ id ).before(''+ title +'');
}
}
// Colors
cake_shop_bakery_customizer_label( 'background_color', 'Colors' );
cake_shop_bakery_customizer_label( 'background_image', 'Background Image' );
// Site Identity
cake_shop_bakery_customizer_label( 'custom_logo', 'Logo Setup' );
cake_shop_bakery_customizer_label( 'site_icon', 'Favicon' );
// General Setting
cake_shop_bakery_customizer_label( 'cake_shop_bakery_preloader_hide', 'Preloader' );
cake_shop_bakery_customizer_label( 'cake_shop_bakery_sticky_header', 'Sticky Header' );
cake_shop_bakery_customizer_label( 'cake_shop_bakery_scroll_hide', 'Scroll To Top' );
//Slider
cake_shop_bakery_customizer_label( 'cake_shop_bakery_slider_setting', 'Slider' );
//Featured Product
cake_shop_bakery_customizer_label( 'cake_shop_bakery_new_product_setting', 'Product' );
//Header Image
cake_shop_bakery_customizer_label( 'header_image', 'Header Image' );
//Footer
cake_shop_bakery_customizer_label( 'cake_shop_bakery_footer_text_setting', 'Footer' );
});
})( jQuery );