Skip to content

Instantly share code, notes, and snippets.

@edveraxo
Created April 22, 2023 18:30
Show Gist options
  • Save edveraxo/ecfc18ea3e525850006ae7f6ad1f11c0 to your computer and use it in GitHub Desktop.
Save edveraxo/ecfc18ea3e525850006ae7f6ad1f11c0 to your computer and use it in GitHub Desktop.
// ---- Добавить в functions.php темы
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