Owl Carousel Uncaught TypeError:undefined不是Wordpress中的函数

Mun*_* Yo 3 wordpress owl-carousel

我是一个开发自己的Wordpress主题.我正在使用猫头鹰旋转木马

但是Uncaught TypeError: undefined is not a function从第1行获取此错误并且不显示任何轮播项目.对不起我的英文不好.

$(document).ready(function() {

    $("#owl-demo").owlCarousel();

});
Run Code Online (Sandbox Code Playgroud)

rne*_*ius 12

默认情况下, jQuery包含在WordPress 中,无冲突模式.在noConflict()模式下,$jQuery 的全局快捷方式不可用,因此您需要使用:

jQuery(document).ready(function($) {
    // Inside of this function, $() will work as an alias for jQuery()
    // and other libraries also using $ will not be accessible under this shortcut
});
Run Code Online (Sandbox Code Playgroud)