Support

Account

Home Forums ACF PRO 'A title, maybe a $_POST variable' how to? Reply To: 'A title, maybe a $_POST variable' how to?

  • What kind of fields are they? Text fields?
    Where are the fields located in the dashboard?

    <?php
      $title = get_field('title');
      $field1 = get_field('field1');
      $field2 = get_field('field2');
    ?>
    <h1 class="post-title"><?php echo $title $field1 $field2; ?></h1>