Skip to content

Instantly share code, notes, and snippets.

@everaldomatias
Created January 23, 2025 12:21
Show Gist options
  • Save everaldomatias/2d880711713f7ca4387357061366532a to your computer and use it in GitHub Desktop.
Save everaldomatias/2d880711713f7ca4387357061366532a to your computer and use it in GitHub Desktop.
Remove the “Uncategorized” Category in WordPress
<?php
function remove_uncategorized_category( $terms ) {
if ( ( $key = array_search( 'uncategorized', array_column( $terms, 'slug' ) ) ) !== false ) {
unset( $terms[$key] );
}
return $terms;
}
add_filter( 'get_terms', 'remove_uncategorized_category' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment