<?php $recipes = get_field( 'recipes' ); ?>
<?php if ( $recipes ) : ?>
<?php foreach ( $recipes as $post ) : ?>
<?php setup_postdata ( $post ); ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php endforeach; ?>
<?php wp_reset_postdata(); ?>
<?php endif; ?>