尝试添加Media Uploader时出错

时间:2014-01-28 17:13:00

标签: wordpress

我已将当前的js文件包含到我的主题

<script src="<?php echo bloginfo('template_directory');?>/js/jquery-1.10.2.min.js"></script>
<script src="<?php echo bloginfo('template_directory');?>/js/jquery.easing.1.3.js"></script>

当我尝试在我的插件中使用时。

wp_enqueue_script('media-upload');
wp_enqueue_script('thickbox');

我收到当前错误

TypeError: jQuery.easing[jQuery.easing.def] is not a function

1 个答案:

答案 0 :(得分:0)

尝试打开你的jquery easing插件文件并将代码包装在内:

$(document).ready(function() {
    // Put all the code inside here
});
相关问题