Support

Account

Home Forums Backend Issues (wp-admin) Add text before and after the field? Reply To: Add text before and after the field?

  • Whenever you implement your field using the_field('filename') you could write it inside your source code:

    <?php
     echo "<div>";
     the_field('filename');
     echo "</div>";
    ?>

    If thats helpful?