Claro, evidentemente estás usando un plugin. Aquí
en las especificaciones de la función hay un ejemplo:
Código PHP:
Ver original/*
* use the_field / get_field with conditional statements
*/
if( get_field( "text_field" ) ): ?>
<p><?php the_field( "text_field" ); ?></p>
<?php endif;
Justo el que necesitas.