You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
577 B

/**
* This file adds some LIVE to the Theme Customizer live preview. To leverage
* this, set your custom settings to 'postMessage' and then add your handling
* here. Your javascript should grab settings from customizer controls, and
* then make any necessary changes to the page using jQuery.
*/
( function( $ ) {
//Update site accent color in real time...
wp.customize( 'accent_color', function( value ) {
value.bind( function( newval ) {
$('.header').css('background-color', newval );
$('.post-content a').css('color', newval );
} );
} );
} )( jQuery );