0

我想以安全的方式添加和加载我的脚本。但是,将代码添加到functions.php 时,特定模板上没有任何反应。

<?php
function theme_scripts() {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery',     'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js');
wp_enqueue_script( 'jquery' );
wp_enqueue_script( 'jquery2', 'http://code.jquery.com/jquery-latest.js' );
wp_enqueue_script( 'easing', get_template_directory_uri() . '/jquery.easing.1.3.js',     'jquery' );
}    

add_action('init', 'theme_scripts');
?>

http://sandbox.jinoh.dk/charlotte/wordpress/wordpress/

我已经读过它应该被加载到模板中 - 例如 index.php ,就像一个正常的等,但是什么都没有。我做错了什么?

4

1 回答 1

2

确保调用wp_head()您的主题,通常是在您的header.php文件中。

这个清单非常好:WordPress 主题开发清单

于 2012-06-19T22:10:31.580 回答