How to remove specific categories from tag archives?
One way to do this would be to create a custom widget which displays categories using wp_list_categories(). Then exclude any categories you don’t want displayed using the exclude option of wp_list_categories(): http://codex.wordpress.org/Template_Tags/wp_list_categories#Include_or_Exclude_Categories. This example below creates a custom categories widget in Appearance / Widgets. This code can be added to functions.php or used in a … Read more