这篇文章也有一些答案。
我过去也遇到过这种情况,如果需要,我通常什至不使用 wordpress 自己的 jquery。因为服务器端的 google 方法更快。下面的代码必须工作。
函数.php
<?php
function google_jquery() {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js');
wp_enqueue_script( 'jquery' );
}
add_action('wp_enqueue_scripts', 'google_jquery');
?>
确保 wp_head(); 在你的header.php文件中。
头文件.php
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php wp_title(); ?> <?php bloginfo( 'name' ); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>" type="text/css" media="screen" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<?php if ( is_singular() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' ); ?>
<?php wp_head(); ?>
</head>
您不需要以这种方式在页脚中调用其他 jquery 脚本。如果您正在排队让我们说 jquery UI 脚本,那么请确保您有 wp_footer(); 在您的footer.php文件中。
页脚.php
<?php
//Footer scripts
wp_footer();
?>
</body>
</html>