the code I'm currently using to display categories is <?php foreach((get_the_category()) as $category) { echo $category->cat_name . ' ';}?>
I would like to exclude a category called "home-featured" or the category with ID "65" how would I add this to the code above?
