Support

Account

Home Forums General Issues How to taxonomies and display taxonomy acf image only primary Reply To: How to taxonomies and display taxonomy acf image only primary

  • This code is work. But image show all i need a show only priamry and link to “company_categories” how to fix?

    
    <?php 
        $terms = get_the_terms ( 
        	$post->ID, 'company_categories' 
        ); 
            foreach($terms as $term) {?>
                <?php 
                $image = get_field('company_profile', 'company_categories_' . $term->term_id);
                
                if( !empty($image) ): ?>
                	<picture href="">
                		<img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" width="250" height="250" />
                	</picture>
                <?php endif; ?>
            <?php } ?>