Browse: Home / Hooks /

learndash_questions_buttons_before

do_action( 'learndash_questions_buttons_before' )

Fires before 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_before action.
 */
add_action(
	'learndash_questions_buttons_before',
	function() {

		// Add your custom code here
	}
);