0

我目前正在使用 wordpress 3.4.1 我想将 jquery 嵌入到我自己的 wordpress 主题中,但我无法做到。尝试了网上可用的最大可能解决方案,但仍然无法令人信服地实施它。请帮忙举个简单的例子!!

4

2 回答 2

0

试试下面的代码。

下面的代码在你的主题中添加了你的function.php

add_action('wp_head', 'add_myJquery');

function add_myJquery()
{
?>
    <script src="<?php bloginfo( 'template_url' ); ?>/js/jquery-latest.js" type="text/javascript"></script>
    <script type="text/javascript">
        jQuery(document).ready(function() {

            //write your jquery code Here.
        });

    </script>
<?    
}

或者

在您的主题 header.php 文件中的 html 头标记之间添加以下代码

<script src="<?php bloginfo( 'template_url' ); ?>/js/jquery-latest.js" type="text/javascript"></script>
于 2012-08-30T06:28:56.950 回答
0

为了获得最佳兼容性,请使用 WordPress 附带的 jQuery 版本(加载特定版本的 jQuery 可能会在将来破坏您的插件):

添加到function.php:

function insert_jquery(){
   wp_enqueue_script('jquery');
}
add_filter('wp_head','insert_jquery');

或者,如果您想从 Google CDN 加载它:

function my_scripts_method() {
    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', 'my_scripts_method');

在这里阅读更多:http: //codex.wordpress.org/Function_Reference/wp_enqueue_script

也可以使用以下链接:

http://code.jquery.com/jquery-latest.min.js - 最新版本

http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js - ver 1.x 系列中的最新版本

http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js - 1.7.x 系列中的最新版本

http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js - 1.8.x 系列中的最新版本

于 2012-08-30T06:48:03.440 回答