Created
April 5, 2014 09:15
-
-
Save felixzapata/9989468 to your computer and use it in GitHub Desktop.
WordPress - Category list order in post edit page
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
function taxonomy_checklist_checked_ontop_filter ($args) | |
{ | |
$args['checked_ontop'] = false; | |
return $args; | |
} | |
add_filter('wp_terms_checklist_args','taxonomy_checklist_checked_ontop_filter'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment