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(); ?>
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.