Skip to content

Instantly share code, notes, and snippets.

@RhythmShahriar
Created October 14, 2013 12:02
Show Gist options
  • Save RhythmShahriar/6974567 to your computer and use it in GitHub Desktop.
Save RhythmShahriar/6974567 to your computer and use it in GitHub Desktop.
<?php
/**-------------------------------------------
* @package Code Snippets
* @link http://rhythmshahriar.com/code/
* @author Rhythm <[email protected]>
* @copyright Copyright (c) 2013, Rhythm Shahriar
-------------------------------------------------*/
// jQuery Management
function modify_jquery() {
if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js', false, '1.10.2');
wp_enqueue_script('jquery');
}
}
add_action('init', 'modify_jquery');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment