Skip to content

Instantly share code, notes, and snippets.

@badfun
Last active August 29, 2015 14:26
Show Gist options
  • Save badfun/3a9a3799a0b77ff895d9 to your computer and use it in GitHub Desktop.
Save badfun/3a9a3799a0b77ff895d9 to your computer and use it in GitHub Desktop.

Revisions

  1. badfun revised this gist Jul 28, 2015. No changes.
  2. badfun revised this gist Jul 28, 2015. No changes.
  3. badfun created this gist Jul 28, 2015.
    10 changes: 10 additions & 0 deletions load_jquery.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    function bfp_load_jquery_if_not_loading(){

    if( ! wp_script_is( 'jquery', 'enqueued') && ! is_admin() ){
    wp_deregister_script('jquery');
    wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js', false, '1.11.3');
    wp_enqueue_script('jquery');
    }
    }

    add_action( 'wp_enqueue_scripts', 'bfp_load_jquery_if_not_loading');