| Server IP : 167.235.67.158 / Your IP : 216.73.216.95 Web Server : Apache System : Linux ubuntu-8gb-nbg1-1 6.8.0-111-generic #111-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 11 23:16:02 UTC 2026 x86_64 User : upstairsbar.co.uk ( 982) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/ipmpumps.co.uk/wp-content/plugins/jquery-updater/ |
Upload File : |
<?php
/*
Plugin Name: jQuery Updater
Plugin URI: http://www.ramoonus.nl/wordpress/jquery-updater/
Description: This plugin updates jQuery to the latest stable version.
Version: 1.9.1
Author: Ramoonus
Author URI: http://www.ramoonus.nl/
License: GPL3
*/
function rw_jquery_update() {
/* do not interfere with /wp-admin/ */
if ( !is_admin() ) {
wp_deregister_script('jquery');
wp_enqueue_script('jquery', plugins_url('/js/jquery-1.9.1.min.js', __FILE__), false, '1.9.1');
}
}
add_action('init', 'rw_jquery_update');
/* Declare Shortcode */
function rw_jquery_shortcode( $atts, $content = null ) {
return '<script>jQuery(function($) { ' . $content . ' }); </script>';
}
//add_shortcode( 'jquery', 'rw_jquery_shortcode' ); // [jquery]
//add_shortcode( 'jq', 'rw_jquery_shortcode' ); // [jq]
?>