我很困惑,所以如果我把它放在 Wordpress 上的 functions.php 中,它就可以工作
function modify_jquery() {
if (!is_admin()) {
// comment out the next two lines to load the local copy of jQuery
wp_deregister_script('jquery');
wp_register_script('jquery', 'http://sitgesgroup.com/wp-content/themes/toolbox/assets/js/jquery-1.9.0.min.js', false, '1.9.0');
wp_enqueue_script('jquery');
}
}
add_action('init', 'modify_jquery');
但,
如果我把它打破
http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.jsfunction modify_jquery() {
if (!is_admin()) {
// comment out the next two lines to load the local copy of jQuery
wp_deregister_script('jquery');
wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js', false, '1.9.0');
wp_enqueue_script('jquery');
}
}
add_action('init', 'modify_jquery');
为什么如果这些是同一个文件?
谢谢!