Browse: Home / Hooks /

learndash-quiz-row-before

do_action( 'learndash-quiz-row-before',  int $quiz_id,  int $course_id,  int $user_id )

Fires before the quiz row listing.


Description #


Parameters #

$quiz_id

(int) Quiz ID.

$course_id

(int) Course ID.

$user_id

(int) User ID.


Source #

File: themes/ld30/templates/quiz/partials/row.php


Examples #

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

 <?php
/**
 * Example usage for learndash-quiz-row-before action.
 */
add_action(
	'learndash-quiz-row-before',
	function( $quiz_id, $course_id, $user_id ) {
		// May add any custom logic using $quiz_id, $course_id, $user_id

	},
	10,
	3
);
 

Changelog #

Changelog
Version Description
3.0.0 Introduced.