2

我总是很难让 jQuery 在 wordpress 中工作。

我真的需要一些关于这件事是如何工作的澄清和解释。

这是我的代码,我似乎看不出它有什么问题。

在 functions.php 文件中:

function my_init() {
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.3.2/jquery.min.js', false, '1.3.2'); 
    wp_enqueue_script('jquery');
} } add_action('init', 'my_init');

这是在我调用其他 jQuery 脚本之前在我的页脚中:

<?php wp_enqueue_script("jquery"); ?>
4

1 回答 1

1

这篇文章也有一些答案。

我过去也遇到过这种情况,如果需要,我通常什至不使用 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>
于 2012-10-29T12:52:24.583 回答