mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 10:22:23 +01:00
01f8df5b80
git-svn-id: http://core.svn.wordpress.org/trunk@20916 1a063a9b-81f0-0310-95a4-ce76da25c4cd
12 lines
296 B
JavaScript
12 lines
296 B
JavaScript
( 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 ); |