Support

Account

Home Forums Add-ons Options Page ACF options page Reply To: ACF options page

  • If your field (text?) is called title, you need to adjust the code:

    
    <?php
    $title = get_field('title', option);
    if( $title );
      echo $title;
    endif;
    ?>

    The code you’ve shown above is a repeater field. It’s also option not $option