Support

Account

Home Forums Add-ons Repeater Field URL field help Reply To: URL field help

  • <?php if ( have_rows( 'my_repeater' ) ) : ?>
    	<?php while ( have_rows( 'my_repeater' ) ) : the_row(); ?>
    		<?php $url = get_sub_field( 'url' ); ?>
    		<?php if ( $url ) { ?>
    			<a href="<?php echo $url['url']; ?>" target="<?php echo $url['target']; ?>"><?php echo $url['title']; ?></a>
    		<?php } ?>
    	<?php endwhile; ?>
    <?php else : ?>
    	<?php // no rows found ?>
    <?php endif; ?>

    The same, just use “get_sub_field”.

    If you struggle with the code there is a premium plugin that gives you all the code: https://hookturn.io/downloads/acf-theme-code-pro/