スクリプトを安全な方法で追加およびロードしたいと考えています。ただし、コードが 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ですが、何もありません。私は何を間違っていますか?