Customizer Ajax

时间:2015-11-07 作者:Elidrissi simo

这是下划线主题中使用的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 );
    }

1 个回复
SO网友:Tobias Beuving

简言之,是的,你可以。这是否明智取决于你的要求。如果要使用该功能自定义主题,请can read about the API 在这里

相关推荐

Underscores in custom fields

在尝试使用meta\\u Query()执行WP\\u查询时,我遇到了一些问题,因为插件创建的自定义字段_ 在它名字的开头。虽然我注意到它是以这种方式存储在数据库中的,但我不知道它为什么会在那里,我想我必须引用它而不带下划线(对于记录,这是错误的)。为什么一些自定义字段以下划线开头,而其他字段不以下划线开头?下划线的作用是什么?在某些情况下它们是强制性的吗?