function uw_load_scripts() {
// De-register the built in jQuery
wp_deregister_script('jquery');
// Register the CDN version
wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js', array(),'','1.1', true);
// Load it in your theme
wp_enqueue_script('jquery');
}
add_action('wp_enqueue_scripts', 'uw_load_scripts');
我有這個很好的功能mytheme/function.php。他們說這應該將js移到頁腳,但在我的情況下它不會。任何想法爲什麼或/和如何將其移動到頁腳?WordPress的:jquery.js不會移動到頁腳
有一個'the_footer()'掛鉤在footer.php網頁? Wordpresses用它來掛鉤腳本。 – Broxzier
我有wp_footer(); before/body標籤 – user2988759
'wp_footer()'在該位置包含文件'footer.php'。該文件是否包含'the_footer()'鉤子? – Broxzier