Skip to content

Instantly share code, notes, and snippets.

@thierrypigot
Created April 25, 2016 08:18
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thierrypigot/ec68d316bb433814abf1b8f285ac290d to your computer and use it in GitHub Desktop.
Save thierrypigot/ec68d316bb433814abf1b8f285ac290d to your computer and use it in GitHub Desktop.
Prevent Selected Terms Rising to the Top
<?php
add_filter('wp_terms_checklist_args','tp_wp_terms_checklist_args');
function tp_wp_terms_checklist_args($args) {
$args['checked_ontop'] = false;
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment