Support

Account

Home Forums Add-ons Repeater Field Check if one field only Reply To: Check if one field only

  • Hi @anto.c
    You can check the amount of rows like so:

    
    $images = get_field('background', $post_id);
    
    if( count($images) > 1 )
    {
    
    }
    

    Hope that helps.

    Thanks
    E