Get template part based on custom taxonomy term
To loop through all the slugs of a term list, simply call get_the_terms() and pull only the slugs: $slugs = wp_list_pluck( get_the_terms( get_the_ID(), ‘prodcat’ ), ‘slug’ ); Then you need to check if you got any results: if ( ! empty( $slugs ) ) The problem I then see arising is that you got a … Read more