Skip to content

Instantly share code, notes, and snippets.

@tott
Created January 26, 2014 21:17
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save tott/8639621 to your computer and use it in GitHub Desktop.
Speed up wp-admin when there are a lot of terms
add_action( 'admin_init', 'deregister_autosuggest' );
function deregister_autosuggest() {
if ( is_admin() ) {
wp_deregister_script( 'suggest' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment