Support

Account

Home Forums Front-end Issues Show the values of a field on the front end in a list Reply To: Show the values of a field on the front end in a list

  • A simple check should do:

    
    $location = get_field('location');
    if($location) :
        echo '<p>acf stuff' . $location . '</p>';
    endif;