Support

Account

Home Forums Front-end Issues AFC fields not showing on front end post editor Reply To: AFC fields not showing on front end post editor

  • Can you share the code you are using to pull your custom fields in the front end? You should echo the custom fields like this:

     <?php
     $var = get_the_field('my-custom-field');
     ?>
     <p><?php echo $var; ?></p>