Skip to content

Instantly share code, notes, and snippets.

@bappi-d-great
Last active July 6, 2018 08:10
Show Gist options
  • Save bappi-d-great/dc622dea1dcb4de1427806486065e42b to your computer and use it in GitHub Desktop.
Save bappi-d-great/dc622dea1dcb4de1427806486065e42b to your computer and use it in GitHub Desktop.
Method: delete_quizzes( $quiz_ids )
<?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