我已经搜索过,但没有找到答案,为什么我的.js文件不断给我一个错误,因为wp.customize函数中没有定义错误。 我已经把这个剧本排成了这个
function ws_customizer_live_preview(){ wp_enqueue_script( 'ws-themecustomizer', get_template_directory_uri() .'/library/js/theme-customizer.js', array( 'jquery','customize-preview' ), true ); } add_action( 'customize_preview_init', 'ws_customizer_live_preview' );
这基本上是从WP Docs复制的。 javascript是
(function( $ ) {
"use strict";
wp.customize( 'ws_display_header', function( value ) {
value.bind( function( to ) {
false === to ? $( '.header' ).hide() : $( '.header' ).show();
} );
});
wp.customize( 'ws_footer_copyright_text', function( value ) {
value.bind( function( to ) {
$( 'span#copyright-message' ).text( to );
});
}); })(jQuery);
我需要知道为什么js中的wp.customize给我wp没有定义错误。 谢谢