do_action( 'learndash_questions_buttons_before' )
Fires before quiz questions buttons.
Contents
Description #
Source #
File: includes/lib/wp-pro-quiz/lib/view/WpProQuiz_View_QuestionOverall.php
Examples #
<?php /** * Example usage for learndash_questions_buttons_before action. */ add_action( 'learndash_questions_buttons_before', function() { echo '<div>Custom content or markup</div>'; } );