Support

Account

Home Forums General Issues get_field() — noob problems with Brizy Reply To: get_field() — noob problems with Brizy

  • Hi @teegee,

    If you do something like:

    <?php $text = get_field('text');
    if( !empty( $text ) ): 
        echo $text;
    endif; ?>

    Basically, this checks of your text field has a value, if it does, it will show the content.

    You would need to amend the field name from text to whatever you need.

    Is that what you meant?