changeset 194 | 32102edaa81b |
193:2f6f6f7551ca | 194:32102edaa81b |
---|---|
1 ( function( $ ){ |
|
2 wp.customize( 'blogname', function( value ) { |
|
3 value.bind( function( to ) { |
|
4 $( '#site-title a' ).html( to ); |
|
5 } ); |
|
6 } ); |
|
7 wp.customize( 'blogdescription', function( value ) { |
|
8 value.bind( function( to ) { |
|
9 $( '#site-description' ).html( to ); |
|
10 } ); |
|
11 } ); |
|
12 } )( jQuery ); |