将 Jquery 与 WordPress 结合使用

发布于 2024-11-11 12:54:53 字数 373 浏览 0 评论 0原文

如何将 jQuery 与 WordPress 插件一起使用?

我的代码:

require_once("view.php");
add_filter('the_content', 'test');
add_action('wp_head', 'ss_load_script');
add_action('wp_footer','display_copyright');


function ss_load_script(){
    wp_enqueue_script('jquery_new', get_bloginfo('url')."/wp-content/plugins/Test/jquery_new.js", array(), '', true);
}

How to use jQuery with Wordpress plugin?

My code:

require_once("view.php");
add_filter('the_content', 'test');
add_action('wp_head', 'ss_load_script');
add_action('wp_footer','display_copyright');


function ss_load_script(){
    wp_enqueue_script('jquery_new', get_bloginfo('url')."/wp-content/plugins/Test/jquery_new.js", array(), '', true);
}

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

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

发布评论

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

评论(1

四叶草在未来唯美盛开 2024-11-18 12:54:53

Wordpress 已经加载了 jquery:如果您尝试加载不同版本的 jQuery,您最终可能会在标准版本和您的版本之间出现冲突问题。

如果您需要 jQuery,只需使用 WordPress 加载的默认 jQuery 库。否则,您要么覆盖现有的 jQuery 库(这可能对您来说效果很好:上面的代码可以工作),要么您必须执行一些 javascript 魔术,将现有的 jquery 复制到另一个对象,然后再加载新副本,然后恢复完成后。

Wordpress already loads jquery: if you are trying to load a DIFFERENT version of jQuery you might end up having conflict issues between the standard version and your version.

If you need jQuery just use the default jQuery library that Wordpress loads. Otherwise you will either overwrite the existing jQuery library (which could probably work out fine for you: your code above would work) or you have to do some javascript magic to copy the existing jquery to another object before you load your new copy and then restore it after you're done.

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