Skip to content

Instantly share code, notes, and snippets.

@ajithrn
Last active August 29, 2015 14:05
Show Gist options
  • Save ajithrn/5370703a4817cdc31a75 to your computer and use it in GitHub Desktop.
Save ajithrn/5370703a4817cdc31a75 to your computer and use it in GitHub Desktop.
Wordpress: Gravity Form PHP embed
<?php
/**
* ref : http://www.gravityhelp.com/documentation/page/Embedding_A_Form
* Gravity forms embedding in php files
* @var boolean
*/
gravity_form($id_or_title, $display_title=true, $display_description=true, $display_inactive=false, $field_values=null, $ajax=false, $tabindex);
//Usage
gravity_form(1, false, false, false, '', false);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment