jackfearing
2/20/2020 - 12:18 AM

ACF: How to check to see if a value is set in an field

<?php
	$values = get_field( 'field_name' );
	if ( $values ) {
	    echo 'A value is set';
	} else {
	    echo 'A value is not set';
	};
?>