更改路径如何get_template_directory_uri()
像这样:
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/jquery-1.3.2.min.js"></script>
您也可以使用
TEMPLATEPATH
获取路径,而不是uri。但无论如何,为什么不直接在标题中包含这些行呢?
UPDATE
如果您喜欢使用
wp_enqueue_script
你必须记住把它挂在一个动作上
tracking.php
如下所示:
function register_scripts() {
wp_enqueue_script(\'jquery\');
wp_register_script(\'jquerycookie\', get_template_directory_uri() . \'/js/jquery-1.3.2.min.js\', array(\'jquery\'));
wp_enqueue_script(\'jquerycookie\');
}
add_action(\'wp_enqueue_scripts\', \'register_scripts\');
将注册新脚本(
/js/jquery.cookie.js
) 并将其与其他脚本一起打印。我不确定是否真的有必要包括jQuery,因为它应该已经包括在内了,只是为了确保您可以在函数的开头添加以下内容:
wp_deregister_script( \'jquery\' );
wp_register_script( \'jquery\', \'http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js\');
正如我所说,没有必要,因为默认情况下应该包括jQuery,但谁知道呢。