Skip to content

Instantly share code, notes, and snippets.

@kjohnson
Last active October 28, 2015 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kjohnson/18bb21c4143b24ae3260 to your computer and use it in GitHub Desktop.
Save kjohnson/18bb21c4143b24ae3260 to your computer and use it in GitHub Desktop.
<?php
// Returns a Field Model for Field ID 1
$model = Ninja_Forms()->form()->field( 1 )->get();
// Returns a Field Model for Field ID 1
$model = Ninja_Forms()->form()->get_field( 1 );
// Returns an array of Field Models for Form ID 1
$models = Ninja_Forms()->form( 1 )->get_fields();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment