Browse: Home / Hooks /

wp_pro_quiz_quiz_finished

do_action( 'wp_pro_quiz_quiz_finished' )

Fires on quizFinished function call.


Description #


Source #

File: includes/lib/wp-pro-quiz/lib/plugin/WpProQuiz_Plugin_BpAchievementsV2.php


Examples #

Note: Extended code example below not guaranteed, you may need to consult with a developer

 <?php
/**
 * Example usage for wp_pro_quiz_quiz_finished action.
 */
add_action(
	'wp_pro_quiz_quiz_finished',
	function() {

		// Add your custom code here
	}
);