Support

Account

Home Forums Front-end Issues Xav Reply To: Xav

  • the_field() echos the content, so you’ll need to use get_feild() and then format the value yourself.

    
    <?php 
      $value = get_field('work_categories');
      if ($value) {
        ?><h2><?php echo implode(' | ', $value); ?></h2><?php 
      }
    ?>