Last active
July 6, 2018 08:10
-
-
Save bappi-d-great/dc622dea1dcb4de1427806486065e42b to your computer and use it in GitHub Desktop.
Method: delete_quizzes( $quiz_ids )
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 | |
$quiz_ids = array( 12, 34, 56, 78, 90 ); | |
$forms = Forminator_API::delete_quizzes( $quiz_ids ); // Method 1 to delete specific forms | |
$forms = Forminator_API::delete_quizzes( 12, 34, 56, 78, 90 ); // Method 2 to delete specific forms |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment