Created
July 10, 2013 12:15
-
-
Save oblik/5965821 to your computer and use it in GitHub Desktop.
Catégories checkbox - garde la hiérarchie des catégories
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
// 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