将 Jquery 与 WordPress 结合使用
如何将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.