• I am using Gravity Forms to create Posts. The form is simple. Just has Name, Post Title and Post Description. When the Post is Submitted it is then displayed (after I check it). I would like to write out the name as entered in the Name field. I was trying the code below, but not working. [<?php get_post_meta(the_ID(), “Name”); ?>] Can someone please help me out with what the correct PHP function call should be.

    <div Posted on <?php the_time(get_option(‘date_format’)) ?>, <?php the_time(get_option(‘time_format’)) ?>, by <?php the_author() ?>, Name: <?php get_post_meta(the_ID(), “Name”); ?> </div>

    Thanks.

  • The topic ‘Accessing Gravity Forms Name Field Using PHP’ is closed to new replies.