Exclude a category from the filed under list
I have found an answer at this article entitled “Excluding Categories from the_category();”: function the_category_filter($thelist,$separator=” “) { // list the IDs of the categories to exclude $exclude = array(4,5); // create an empty array $exclude2 = array(); // loop through the excluded IDs and get their actual names foreach($exclude as $c) { // store the … Read more