我想以安全的方式添加和加载我的脚本。但是,将代码添加到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 ,就像一个正常的等,但是什么都没有。我做错了什么?