Browse: Home / Hooks /

learndash_questions_buttons_after

do_action( 'learndash_questions_buttons_after' )

Fires after quiz questions buttons.


Description #


Source #

File: includes/lib/wp-pro-quiz/lib/view/WpProQuiz_View_QuestionOverall.php


Examples #

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

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

		// Add your custom code here
	}
);