Support

Account

Home Forums Add-ons Repeater Field Repeater Taxonomy – URL link Reply To: Repeater Taxonomy – URL link

  • I have been using something like this for my projects.
    hope it helps.

    This code is on the taxonomy-(your taxonomy).php file

    
    <?php $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); // get current term ?>
    
    <?php if ( have_rows('category_slideshow', $term) ): ?>
    
    	<?php while ( have_rows('category_slideshow', $term) ) : the_row();
    	$img = get_sub_field('category_slideshow_image', $term);
    	?>
    	<img src="<?php echo $img['url']; ?>" alt="<?php echo $img['alt'] ?>" />
    	<?php endwhile; ?>
    
    <?php endif; ?>