Support

Account

Home Forums Add-ons Repeater Field Grab Value From Options Page Rep. Field Reply To: Grab Value From Options Page Rep. Field

  • Hi @sainc

    I think you can use something like this:

    $repeater = get_field('repeater_field_name', 'option');
    foreach ($repeater as $content){
        if ($content['name'] == "name_1"){
            echo $content['value'];
        }
    }