Query Pulling the same post twice
I solved it: Just in case anybody ever has any trouble querying a post with the same term of a Taxonomy in another Post Type. I’ll post my answer below because I finally solved it on my own. <?php $terms = get_the_terms( $post->ID, ‘supplier-tax’); foreach ( $terms as $term ) { $termID[] = $term->term_id; } … Read more