Browse: Home / Hooks /

learndash_essay_question_stats_updated

do_action( 'learndash_essay_question_stats_updated' )

Fires after the essay question stats are updated.


Description #


Source #

File: includes/quiz/ld-quiz-essays.php


Examples #

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

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

		// Add your custom code here
	}
);