如果这是可行的(这是人们在围绕web的一系列主题中的做法):
<html>
<head>
<!-- stuff -->
<?php wp_enqueue_script(\'jquery\'); ?>
<?php wp_head(); ?>
</head>
<!-- more stuff -->
为什么建议使用钩子将脚本排队?
add_action(\'wp_enqueue_scripts\', \'my_enqueue_scripts\');
function my_enqueue_scripts() {
wp_enqueue_script(\'jquery\');
}