Browse: Home / Hooks /

wp_pro_quiz_completed_quiz_100_percent

do_action( 'wp_pro_quiz_completed_quiz_100_percent' )

Fires after the pro quiz is completed hundred percent.


Description #


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_100_percent action.
 */
add_action(
	'wp_pro_quiz_completed_quiz_100_percent',
	function() {

		// Add your custom code here
	}
);