How to get Repeater – ACF field value in WordPress

get Repeater – ACF field value in WordPress

<ul class=”header-v2-social”>
<?php

if(have_rows(‘social_list’,’option’)):
while(have_rows(‘social_list’,’option’)): the_row();
$name = get_sub_field(‘social_name’);
$link = get_sub_field(‘links’);
$icon_name = get_sub_field(‘font_awesome_icon’);
?>
<li>
<a href=”<?php echo $link; ?>” title=”<?php echo $name; ?>”>
<i class=”fa fa-<?php echo $icon_name; ?>”></i>
</a>
</li>
<?php endwhile; endif; ?>
</ul>