Home › Forums › General Issues › some problem with acf taxonomy › Reply To: some problem with acf taxonomy
Hi @konstantin
Could you please share the screenshot of the field group’s location rule? Did you mean you want to show all pages that have the taxonomy custom field selected on it? If you did, then you need to query the pages for each term returned by the custom field. This page should give you more idea about it: https://www.advancedcustomfields.com/resources/query-posts-custom-fields/. Here’s an example how to do it:
<?php
$terms = get_field('eee');
if( $terms ): ?>
<ul>
<?php foreach( $terms as $term ): ?>
<a href="<?php echo get_term_link( $term ); ?>">View all '<?php echo $term->name; ?>' posts</a>
<?php
$posts = get_posts(array(
'numberposts' => -1,
'post_type' => 'page',
'meta_query' => array(
array(
'key' => 'eee',
'value' => '"' . $term->term_id . '"',
'compare' => 'LIKE',
),
),
));
?>
<?php foreach( $posts as $post ):
setup_postdata( $post )
?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php endforeach; ?>
<?php endforeach; ?>
</ul>
<?php endif; ?>
I hope this helps 🙂
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.