Created
July 6, 2018 06:51
-
-
Save bappi-d-great/624fcd311b1b2d95b5cdf30ea4a8e863 to your computer and use it in GitHub Desktop.
Method: get_quizzes( $quiz_ids = null )
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 = Forminator_API::get_quizzes(); // Method 1 to get all quizzes | |
$quiz_ids = array( 12, 34, 56, 78, 90 ); | |
$forms = Forminator_API::get_quizzes( $quiz_ids ); // Method 2 to get specific quizzes | |
$forms = Forminator_API::get_quizzes(12, 34, 56, 78, 90 ); // Method 3 to get specific quizzes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment