Support

Account

Home Forums General Issues Limiting the output of a custom field. Reply To: Limiting the output of a custom field.

  • Okay, this is what I did;

        <?php $summary = get_field('description');
              echo substr($summary, 0, 200); ?> 

    That does what I require, thanks.