如何在 WordPress 中安装 jQuery?

发布于 2024-11-02 21:56:17 字数 36 浏览 1 评论 0原文

如何在我的 WordPress 网站上安装 jQuery?

How can I install jQuery on my Wordpress site?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

七七 2024-11-09 21:56:17

尽管其中一个答案已被接受,但我认为以下技术可能会对某人有所帮助。

Plugin Pagefunction.php 中包含以下代码

function include_jQuery() {
    if (!is_admin()) {
        wp_enqueue_script('jquery');
    }
}
add_action('init', 'include_jQuery');

当然,您可以使用任何有意义的函数名称来代替 include_jQuery

或者,您可以使用以下代码:

function include_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.8.3/jquery.min.js', false, '1.8.3'); 
        wp_enqueue_script('jquery');
    }
}
add_action('init', 'include_jQuery');

最后,作为一般规则,您不应将 $ 变量用于 jQuery,除非您使用了 快捷方式。以下是如何快捷方式 jQuery 以安全使用 $ 变量的示例:

jQuery(function ($) {
    /* You can safely use $ in this code block to reference jQuery */
});

您可能喜欢 THIS 链接也是我个人学习上述技术的地方。非常感谢 Ericm Martin!

Though one of the Answer is already Accepted but I feel the following technique may help somebody.

Include the following code at Plugin Page OR at function.php

function include_jQuery() {
    if (!is_admin()) {
        wp_enqueue_script('jquery');
    }
}
add_action('init', 'include_jQuery');

Definitely you can use any meaningful function name instead off include_jQuery.

Alternately, you can use the following code:

function include_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.8.3/jquery.min.js', false, '1.8.3'); 
        wp_enqueue_script('jquery');
    }
}
add_action('init', 'include_jQuery');

Finally, as a general rule, you should not use the $ variable for jQuery unless you have used one of the shortcuts. The following is an example of how to shortcut jQuery to safely use the $ variable:

jQuery(function ($) {
    /* You can safely use $ in this code block to reference jQuery */
});

You may like THIS link as well from where I personally learn the above technique(s). A Very BIG Thanks to Ericm Martin!

卸妝后依然美 2024-11-09 21:56:17

Jquery 已与 Wordpress 安装打包在一起,并可随其使用。
安装新的 WordPress 博客后,请检查源代码。

Jquery Already packaged with the Wordpress installation, and gets available with it.
Check the source code when you get your new Wordpress Blog installed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文