$src – js文件的路径(即url),不要直策应用域名url,要利用路径函数,如parent theme利用get_template_directory_uri,child theme利用get_stylesheet_directory_uri。(WP模板路径干系的函数中,常日带有template的是指parent theme,带有stylesheet的指向child theme)
$deps – 依赖关系,加载的js文件所依存的其它js的标识字串数组(array:string),即须要在本代码之前加载的代码的名称(如js脚本依赖jquery库,那么这里要用数组的形式写上jquery),非必需。
$ver – 加载js文件的版本号,作为查询字串附加在路径的末端,浸染是确保精确的版本信息通报给了客户端,以免受到缓存的影响(如js脚本发生变革时,通过变动版本号可以逼迫客户浏览器更新缓存),默认为false,调用当前wordpress程序的版本号,如果不想显示,则设置为NULL(不推举)。
$in_footer – boolean类型,设置js文件调用代码是否放置在html底部,设置为ture则放在底部,设置为false则放置在head部分。提示须要模板精确放置wp_footer()函数。
利用方法通过wp_enqueue_script函数加载js文件时,该当将它分配给一个钩子,如只在前台调用,利用钩子wp_enqueue_script;只在后台调用,利用admin_enqueue_scripts。
示例前台调用
function xxzhuti_theme_scripts() {
wp_enqueue_script( 'xxzhuti', get_template_directory_uri() . '/js/xxzhuti.js', array(), '1.0.0', true );
}
add_action( 'wp_enqueue_scripts', 'xxzhuti_theme_scripts' );
后台调用
function xxzhuti_theme_scripts() {
wp_enqueue_script( 'xxzhuti', get_template_directory_uri() . '/js/xxzhuti.js', array(), '1.0.0', true );
}
add_action( 'admin_enqueue_scripts', 'xxzhuti_theme_scripts' );
附:函数位置wp-includes/functions.wp-scripts.php文件