Created
August 15, 2018 22:09
-
-
Save bappi-d-great/f34699e7ca135c3247b48483906eecee to your computer and use it in GitHub Desktop.
Method: add_quiz_entries()
This file contains 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 | |
$quiz_id = 7; | |
$entry_metas = array( | |
array( | |
'name' => 'text-1', | |
'value' => 'Text Input Value' | |
), | |
array( | |
'name' => 'text-1', | |
'value' => 'Text Input Value' | |
) | |
); | |
Forminator_API::add_quiz_entries( $quiz_id, $entry_metas ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment