Created
November 18, 2015 13:59
-
-
Save jameslaws/a9318c140a56c50f440a to your computer and use it in GitHub Desktop.
Ninja Forms - Get all form IDs and Names
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$forms = Ninja_Forms()->form()->get_forms(); | |
foreach ( $forms as $form ) { | |
$form_id = $form->get_id(); | |
$form_name = $form->get_setting( 'title' ); | |
// Do more stuff | |
} |
manchumahara
commented
Feb 5, 2018
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment