Skip to content

Instantly share code, notes, and snippets.

@pecuchet
Last active November 19, 2017 09:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pecuchet/7047c14b9fb99adb24c66804d703b38f to your computer and use it in GitHub Desktop.
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
<?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