wp_blog/wp-content/themes/twentyeleven/inc/theme-customizer.js

12 lines
296 B
JavaScript
Raw Permalink Normal View History

2020-01-02 23:15:16 +07:00
( function( $ ){
wp.customize( 'blogname', function( value ) {
value.bind( function( to ) {
$( '#site-title a' ).html( to );
} );
} );
wp.customize( 'blogdescription', function( value ) {
value.bind( function( to ) {
$( '#site-description' ).html( to );
} );
} );
} )( jQuery );