WP 3.8 theme customizer error

时间:2013-12-18 作者:Dimon

我正试图为我的主题制作一些自定义程序,但我遇到了JS错误“UncaughtReferenceError:wp is not defined”LOL。我写的所有代码都是基于Codex的,也许这只是wp 3.8的bug?或者我做错了什么?

我的代码-PHP:

add_action( \'customize_preview_init\', \'customizer_preview\' );

function customizer_preview() {
        wp_register_script( \'wproto-customizer-preview\', get_template_directory_uri() . \'/js/admin/screen-customizer.js\', \'\', true );
        wp_enqueue_script( \'wproto-customizer-preview\', array( \'jquery\', \'customize-preview\' ) );
}
JS公司:

( function( $ ) {

    // here i\'ve got an error "wp is not defined"
    wp.customize( \'blogname\', function( value ) {
        value.bind( function( newval ) {
            $( \'#text-logo .site-title\' ).html( newval );
        } );
    } );
} )( jQuery );
请帮助:)

1 个回复
最合适的回答,由SO网友:RRikesh 整理而成

我认为你在这里排队的方式是错误的。当您使用wp_register_script, 您只需将手柄传递给wp_enqueue_script.

尝试将函数更新为:

function customizer_preview() {
  wp_enqueue_script( \'wproto-customizer-preview\', get_template_directory_uri() . \'/js/admin/screen-customizer.js\', array( \'jquery\', \'customize-preview\' ) );
}

结束

相关推荐