Skip to content

Instantly share code, notes, and snippets.

@caseydriscoll
Created November 3, 2015 03: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 caseydriscoll/1ceff0a36348bed64f0d to your computer and use it in GitHub Desktop.
Save caseydriscoll/1ceff0a36348bed64f0d to your computer and use it in GitHub Desktop.
Filter wp_terms_checklist_args Example
add_filter( 'wp_terms_checklist_args', 'eric_loz_category_fixer', 10, 2);
public function eric_loz_category_fixer( $args, $post_id ) {
$args['checked_ontop'] = false;
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment