Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save oblik/5965821 to your computer and use it in GitHub Desktop.
Save oblik/5965821 to your computer and use it in GitHub Desktop.
Catégories checkbox - garde la hiérarchie des catégories
// Categories checkbox on top prevent on edit ____________________________________
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