Support

Account

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 🙂