Skip to content

Instantly share code, notes, and snippets.

Created December 8, 2015 16:06
Show Gist options
  • Save anonymous/a2017caadc9687e81dad to your computer and use it in GitHub Desktop.
Save anonymous/a2017caadc9687e81dad to your computer and use it in GitHub Desktop.
/**
* Das für die Live-Ansicht nötige jQuery
*/
(function($){
// Die Echtzeitansicht des Website-Namens
wp.customize( 'blogname', function( value ) {
value.bind( function( to ) {
$( '.site-title a' ).text( to );
} );
} );
// Die Echtzeitansicht der Website-Beschreibung
wp.customize( 'blogdescription', function( value ) {
value.bind( function( to ) {
$( '.site-description' ).text( to );
} );
} );
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment