Browse: Home / Hooks /

learndash-{$context}-progession-alert-before

do_action( "learndash-{$context}-progession-alert-before",  int|false $post_id,  int $course_id )

Fires before the lesson progression alert.


Description #

The dynamic portion of the hook name, $context, refers to the context for which the hook is fired, such as course, lesson, topic, quiz, etc.


Parameters #

$post_id

(int|false) Post ID.

$course_id

(int) Course ID.


Source #

File: themes/ld30/templates/modules/messages/lesson-progression.php


Examples #

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

 <?php
/**
 * Example usage for learndash-{$context}-progession-alert-before action.
 */
add_action(
	'learndash-lesson-progession-alert-before',
	function( $post_id, $course_id ) {
		// May add any custom logic using $post_id, $course_id

	},
	10,
	2
);
 

Changelog #

Changelog
Version Description
3.0.0 Introduced.