Created
January 23, 2025 12:21
-
-
Save everaldomatias/2d880711713f7ca4387357061366532a to your computer and use it in GitHub Desktop.
Remove the “Uncategorized” Category in WordPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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