2014-01-28 45 views
0

我有包括當前的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 

回答

0

嘗試打開的jQuery插件緩和文件和包裹裏面的代碼:

$(document).ready(function() { 
    // Put all the code inside here 
}); 
相關問題