假设您的file.js
版本为1.0
您希望将js加载到文档头(而不是页脚),并根据Codex 您可以使用以下方法将脚本文件添加到文档中:
活动主题的functions.php
function my_add_js(){
$theme_uri = get_template_directory_uri();
wp_enqueue_script( $handle, $theme_uri . \'/js/file.js\', array(), \'1.0\', false );
}
将其添加到要执行的操作时:
add_action( \'wp_enqueue_scripts\', \'my_add_js\' );
活动主题的
header.php<!DOCTYPE html>
<html>
<head>
<!-- other head section stuff here ... -->
wp_head();?>
</head>
<body>
<!-- some other html stuff maybe here ... -->
请注意,如果您有一个JavaScript代码段,并且希望使用主题的函数将其添加到页脚中。php文件:
function my_add_js(){
?>
<script>
// This is my script ...
</script>
<?php
}
add_action( \'wp_footer\', \'my_add_js\' );