Skip to content

Instantly share code, notes, and snippets.

@colegeissinger
Created September 5, 2015 00:05
Show Gist options
  • Save colegeissinger/b26bd241e189557ebc5c to your computer and use it in GitHub Desktop.
Save colegeissinger/b26bd241e189557ebc5c to your computer and use it in GitHub Desktop.
Revert jQuery back a version so ACF works in WordPress 4.3
function cg_revert_jquery_version_admin() {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js');
wp_enqueue_script( 'jquery' );
}
add_action( 'admin_enqueue_scripts', 'cg_revert_jquery_version_admin' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment