GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
field-sequence.php
Go to the documentation of this file.
1 <?php
2 /**
3  * The default custom content 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 $field_settings = $gravityview->field->as_configuration();
15 
16 echo $gravityview->field->field->get_sequence( $gravityview );
if(! isset( $gravityview)||empty( $gravityview->template)) $field_settings
The default custom content field output template.
gravityview()
The main GravityView wrapper function.