WP_query exclude a category unless it has more than one catagory
I end up with this to exclude the mama category: /** * filter home and blog pages for mama category * exclude posts that have that category unless they have more categories * @param string $where * @return string */ function filter_mama_cat( $where) { // get the term to exclude $term = get_term_by(‘slug’, ‘mama’, ‘category’); … Read more