Support

Account

Home Forums General Issues Where can I place the code? Reply To: Where can I place the code?

  • So lets say you have a pretty generic Homepage Template

    <?php
    /**
     *Template Name: Home
     */
    <?php get_header(); ?>
    <?php the_field('home_text'); ?>
    <?php get_footer(); ?>
    ?>

    If you place “the_field” php execution like above, your custom field will show within this template.