在函数中添加以下代码。主题的php文件,该文件将删除默认的jquery ui核心,并从主题中添加提供的最新jquery ui核心文件。
function my_scripts_method() {
if(!is_admin()){
wp_deregister_script( \'jquery-ui-core\' );
wp_enqueue_script(\'jquery-ui-core\', get_stylesheet_directory_uri().\'/jquery.ui.core.min.js\', array(\'jquery\'), \'1.9.2\', 1 );
}
}
add_action(\'wp_enqueue_scripts\', \'my_scripts_method\');
告诉我它是否对您有效,或者我为您提供另一种解决方案。。。