Skip to content

Instantly share code, notes, and snippets.

@IAmAdamTaylor
Last active January 28, 2020 16:48
Show Gist options
  • Save IAmAdamTaylor/950a3a78e76100804bc306c085e20752 to your computer and use it in GitHub Desktop.
Save IAmAdamTaylor/950a3a78e76100804bc306c085e20752 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'get_the_categories', 'adt_remove_uncategorised_post_category', 20, 2 );
function adt_remove_uncategorised_post_category( $categories, $id ) {
return array_filter($categories, function($a) {
return 'uncategorised' === $a->slug ? false : $a;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment