0
我要以安全的方式添加和加載我的腳本。然而,當添加的代碼添加到functions.php,什麼都不會發生在特定的模板。wp_enqueue_script不加載到我的模板
<?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例如,像一個正常等,但並沒有什麼。我做錯了什麼?
你'在頭調用'wp_head()? – artlung
不,我忘了。傻我,已經過了午夜。給我一個愚蠢的問題。謝謝:)回答並獲得重點? :) – Christian