Remove / Rename Uncategorized Category In WordPress
To change the default “Uncategorized” using code you can do the following: // Uncategorized ID is always 1 wp_update_term(1, ‘category’, array( ‘name’ => ‘hello’, ‘slug’ => ‘hello’, ‘description’ => ‘hi’ )); Read this: http://codex.wordpress.org/Function_Reference/wp_update_term