do_action( 'wp_pro_quiz_completed_quiz', boolean|int )
Fires after the pro quiz is marked completed.
Description #
Parameters #
-
(boolean|int) The value is a statistic reference ID if the statistics are saved otherwise false.
Source #
File: includes/lib/wp-pro-quiz/lib/controller/WpProQuiz_Controller_Quiz.php
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for wp_pro_quiz_completed_quiz action.
*/
add_action(
'wp_pro_quiz_completed_quiz',
function() {
// Add your custom code here
}
);