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 に答える