Last active
November 19, 2017 09:20
-
-
Save pecuchet/7047c14b9fb99adb24c66804d703b38f to your computer and use it in GitHub Desktop.
WordPress admin: prevent hierarchical categories/terms lists to be flattened in their meta box
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', function ( $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