GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
field-html.php
Go to the documentation of this file.
1 <?php
2 /**
3  * The default field output template.
4  *
5  * @global \GV\Template_Context $gravityview
6  * @since 2.0
7  */
8 
9 if ( ! isset( $gravityview ) || empty( $gravityview->template ) ) {
10  gravityview()->log->error( '{file} template loaded without context', array( 'file' => __FILE__ ) );
11  return;
12 }
13 
14 echo $gravityview->display_value;
gravityview()
The main GravityView wrapper function.