这里有另一种加载jquery ui等流行脚本的方法(使用google api)
<?php
// first, check to see if jquery-ui is already loaded
if( !wp_script_is(\'jquery-ui\') ) {
// you don\'t have to use googleapi\'s, but I think it helps. It saves the user\'s browser from loading the same script again if it has already been loade>
wp_enqueue_script( \'jquery-ui\' , \'https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js\' );
}
?>
*如果您仍然有问题,请尝试使用“siteroot”的完整路径,该路径通常是您可以在其中找到wp content文件夹的目录。因此,如果主题文件夹未连接,要从本地加载jquery ui,请尝试以下操作:
<?php
// first, check to see if jquery-ui is already loaded
if( !wp_script_is(\'jquery-ui\') ) {
wp_enqueue_script( \'jquery-ui\' , \'/home/<myusername>/<mysite.com>/wp-content/themes/<mycustomthemename>/js/jquery-ui.min.js\' );
}
?>
只有当文件位于该文件夹中,并且位于主题内创建的js文件夹中时,这才有效。如果您需要将站点更改为其他url,这是不可取的,但如果这样做,您只需更新文件夹即可。