Support

Account

Home Forums Front-end Issues Taxonomy related posts. Reply To: Taxonomy related posts.

  • 
    <?php
      $selected = get_field('turler');
      $args = array(
        'post_type' => 'film',
        'tax_query' => array(
          array(
            'taxonomy' => 'tur',
            'field' => 'slug',
            // the default operatre is "IN"
            // there is no == operator for tax_query
            // see https://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters
            'terms' => array($selected),
            ),
          ),
      );
      $angebot_2 = new WP_Query( $args );
      while( $angebot_2->have_posts() ) : $angebot_2->the_post();
    ?>
      
      <?php the_title(); ?>
      
      <?php endwhile; wp_reset_postdata(); ?>