Skip to content

Instantly share code, notes, and snippets.

@felixzapata
Created April 5, 2014 09:15
Show Gist options
  • Save felixzapata/9989468 to your computer and use it in GitHub Desktop.
Save felixzapata/9989468 to your computer and use it in GitHub Desktop.
WordPress - Category list order in post edit page
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