admin管理员组

文章数量:1278983

This feels like an easy question but I just cannot get it to work.

I have a basic custom post loop displaying posts based on a taxonomy of location and can then manually change the terms to show posts tagged with the same term. All works fine.

What I am trying to do is change the manual term selection for an ACF taxonomy field called 'case_study_location', so what ever term is selected there then shows the correct posts in my loop. I have tried many different things but cannot get it to work.

Here is my loop

<?php 

$loop = new WP_Query( array( 
                'post_type' => 'case_studies', 
                'posts_per_page' => 3, 
                'post_status' => 'publish',
                'tax_query' => array(
array(
'taxonomy' => 'location',
'field' => 'slug',
'terms' => 'location-two'
)
) ) ); ?>
                
            <?php while ( $loop->have_posts() ) : $loop->the_post(); ?>

                        <h3><?php the_title(); ?></h3>
                        <?php the_terms( $post->ID, 'location', 'categories: ', ' / ' ); ?>

            <?php endwhile; wp_reset_query(); ?>

本文标签: custom post typesCreate loop from selected terms in ACF taxonomy field