Move into wp-content path

Signed-off-by: Adrian Nöthlich <git@promasu.tech>
This commit is contained in:
2019-08-31 00:48:20 +02:00
parent f523d8ccc0
commit 3724cc6edd
342 changed files with 108652 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/*
* 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 );