这是下划线主题中使用的JavaScript代码,用于预览设置值的任何更改,而无需重新加载预览器:
// Site title and description.
wp.customize( \'blogname\', function( value ) {
value.bind( function( to ) {
$( \'.site-title a\' ).text( to );
} );
} );
不使用此选项(从上面的代码):
value.bind( function( to ) {
$( \'.site-title a\' ).text( to );
} );
我可以使用以下工具吗?
function ( value ) {
$( \'.site-title a\' ).text( value );
}