通过wordpress调用jquery1.4.2

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过wordpress调用jquery1.4.2相关的知识,希望对你有一定的参考价值。

This is a custom function to place in your theme's "functions.php" file that will override the typical 1.3.2 version of jQuery included in wordpress with the latest 1.4.2 version (and any future release for that matter). This does not effect the admin section as it has been removed via ' !is_admin()'
  1. <?php // Call version 1.4.2 instead of 1.3.2. from Wordpress
  2.  
  3. function jquery_latest() {
  4. if ( !is_admin()) {
  5. wp_deregister_script( 'jquery' );
  6. wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js', false, '1.4.2' );
  7. }
  8. }
  9. add_action('init', 'jquery_latest');
  10. // Call in head
  11. wp_enqueue_script( 'jquery' );

以上是关于通过wordpress调用jquery1.4.2的主要内容,如果未能解决你的问题,请参考以下文章

Jquery学习(表单-Button)-----jQuery1.4.2

使用回车键代替TAB键 需jquery1.4.2版本

隧道通过 ngrok 剥离风格和主题的 wordpress 网站

稳步减慢从 javascript 对 WCF 服务的 ajax 调用

PHP 通过wordpress调用jQuery 1.4.2

如何通过一个 ajax 调用执行两个操作 - WordPress