Files
wordpress-preseed/wp-content/themes/Pirate-Rogue/js/customizer.js
2019-08-31 00:48:20 +02:00

17 lines
476 B
JavaScript

/*
* Settings for Customizer Preview. Only used in Backend.
*/
( function( $ ) {
wp.customize( 'pirate_rogue_footer_background_color', function( value ) {
$("body[class^='footer-bgcol-']").removeClass( function() {
return (this.className.match(/\b(footer-col-[a-z]+)\b/g) || []).join(' ');
})
value.bind( function( newval ) {
$( 'body' ).addClass( "footer-bgcol-"+newval );
} );
} );
} )( jQuery );