Created
April 25, 2016 08:18
-
-
Save thierrypigot/ec68d316bb433814abf1b8f285ac290d to your computer and use it in GitHub Desktop.
Prevent Selected Terms Rising to the Top
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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