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