• Resolved jimario

    (@jimario)


    Hi Elliott,

    I have created custom fields in a field group and have added that field group to a specific post. I have also input data into those custom fields from within the post.

    I have used the following code in my page/post template in order to display the data:

    <?php while ( have_posts() ) : the_post(); ?>
    <?php echo get_field('first_name'); ?>
    
    			<?php endwhile; ?>

    And I have also tried:

    <?php while ( have_posts() ) : the_post(); ?>
    <?php the_field('first_name'); ?>
    
    			<?php endwhile; ?>

    However, neither one of these will get my data in the field named “first_name” to display.

    I’m using WPMU multi site and have ACF activated for this particular site. Please help.

    https://www.ads-software.com/plugins/advanced-custom-fields-nav-menu-field/

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Saved Data not Displaying on Front End’ is closed to new replies.