2012-05-25 23:50:01 +02:00
|
|
|
( function( $ ){
|
|
|
|
wp.customize( 'blogname', function( value ) {
|
|
|
|
value.bind( function( to ) {
|
2013-02-15 17:53:58 +01:00
|
|
|
$( '#site-title a' ).text( to );
|
2012-05-25 23:50:01 +02:00
|
|
|
} );
|
|
|
|
} );
|
|
|
|
wp.customize( 'blogdescription', function( value ) {
|
|
|
|
value.bind( function( to ) {
|
2013-02-15 17:53:58 +01:00
|
|
|
$( '#site-description' ).text( to );
|
2012-05-25 23:50:01 +02:00
|
|
|
} );
|
|
|
|
} );
|
|
|
|
} )( jQuery );
|