PHP 通过wordpress调用jQuery 1.4.2
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 通过wordpress调用jQuery 1.4.2相关的知识,希望对你有一定的参考价值。
<?php // Call version 1.4.2 instead of 1.3.2. from Wordpress
function jquery_latest() {
if ( !is_admin()) {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js', false, '1.4.2' );
}
}
add_action('init', 'jquery_latest');
// Call in head
wp_enqueue_script( 'jquery' );
以上是关于PHP 通过wordpress调用jQuery 1.4.2的主要内容,如果未能解决你的问题,请参考以下文章
在functions.php中获取wordpress帖子ID
Jquery 函数与 Wordpress 冲突
在 Wordpress 中使用 jQuery 发布数据成功,但使用 FormData 失败
load-scripts.php 从哪里加载 jquery.js 文件?
在 Wordpress 中排队 jQuery
尝试在页面滚动上加载帖子时出现 Ajax/Jquery/PHP 问题