$args = array(
'post__not_in'=>[get_the_ID()],
'tax_query' => array(
array(
'taxonomy' => $related_tax,
'field' => 'id',
'include_children' => false,
'terms' => $cats_tags_or_taxes,
'operator' => 'IN'
)
)
);
for ($i = 1; $i <= 6; $i++) {
$name='home_question_item_'.$i;
$hero = get_field($name);
if( $hero ): ?>
<li class="question__item">
<button class="question__btn"><?php echo ( $hero['home_question']); ?><span></span>
</button>
<p class="question__text"><?php echo ( $hero['home_answer']); ?></p>
</li>
<?php endif;
}