我正在使用下面的函数在我的function.php文件中注册和排队脚本。问题是只有一个脚本(custom.js)似乎没有入队......当我在这里查看我的页面源时:http://dev1.envisionwebdesign.co/features/未加载custom.js。有什么想法吗?
function register_my_scripts() {
wp_register_script( 'bootstrap', get_template_directory_uri() . '/js/bootstrap.min.js', array( 'jquery' ),null, true );
wp_register_script( 'nicescroll', get_template_directory_uri() . '/js/jquery.nicescroll.min.js', array( 'jquery' ),null, true );
wp_register_script( 'custom', get_template_directory_uri() . '/js/custom.js', array( 'jquery','nicescroll' ),null, true );
wp_enqueue_script('jquery');
wp_enqueue_script( 'bootstrap' );
wp_enqueue_script( 'nicescroll' );
wp_enqueue_style( 'custom' );
}
add_action( 'wp_enqueue_scripts', 'register_my_scripts' );
答案 0 :(得分:0)
只需更改
wp_enqueue_style( 'custom' );
到
wp_enqueue_script( 'custom' );