Skip to content

Instantly share code, notes, and snippets.

@bjonesy
Created January 5, 2015 22:26
Show Gist options
  • Save bjonesy/abf779ff6ec2710ec28e to your computer and use it in GitHub Desktop.
Save bjonesy/abf779ff6ec2710ec28e to your computer and use it in GitHub Desktop.
Filter out the uncategorized category from an array
<?php
/**
* Filter out the uncategorized category from an array
*/
function theme_slug_remove_uncategorized( $categories ) {
return array_filter( $categories, function( $c ) {
return $c->name != 'Uncategorized';
} );
}
// Example usage
$terms = get_the_terms( $post->ID, 'category' );
$terms = theme_slug_remove_uncategorized( $terms );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment