Skip to content

Instantly share code, notes, and snippets.

@tiborp
Last active December 27, 2015 23:59
Show Gist options
  • Save tiborp/7410531 to your computer and use it in GitHub Desktop.
Save tiborp/7410531 to your computer and use it in GitHub Desktop.
Dropdown with GravityForms
<?php
$select = '<select>';
$forms = RGFormsModel::get_forms( null, 'title' );
foreach( $forms as $form ):
$select .= '<option id="' . $form->id . '">' . $form->title . '</option>';
endforeach;
$select .= '</select>';
echo "GF dropdown: $select";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment