ID, 'category' ); $upstudy_related_posts_term_ids = array(); if ( $upstudy_related_posts_terms ) : foreach( $upstudy_related_posts_terms as $term ) : $upstudy_related_posts_term_ids[] = $term->term_id; endforeach; endif; $upstudy_related_posts_args = array( 'post_type' => 'post', 'posts_per_page' => $upstudy_related_posts_to_show, 'post__not_in' => array( $post->ID ), 'tax_query' => array( 'relation' => 'AND', array( 'taxonomy' => 'category', 'field' => 'id', 'terms' => $upstudy_related_posts_term_ids, 'operator' => 'IN' ) ) ); $upstudy_related_posts = new WP_Query( $upstudy_related_posts_args ); if ( $upstudy_related_posts->have_posts() ) : echo '
'; $related_products_heading = 'Related Posts'; if ( $related_products_heading ) : echo ''; endif; echo ''; echo '
'; endif;