How to hide some categories in category list under post in wordpress?
I’m afraid that in this case you will have to go throught the categories and have some logic here. you can use a function like this one: function filterCategories($postId,$excluded, $separator){ $categoriesToDisplay = ”; $count = 0; $allCategories = get_the_category($postId); foreach($allCategories as $category) { if ( !in_array($category->cat_ID, $excluded) ) { // get that category link $cat_link … Read more