Browse: Home / Hooks /

learndash-focus-template-end

do_action( 'learndash-focus-template-end',  int $course_id )

Fires after the assignments upload message.


Description #


Parameters #

$course_id

(int) Course ID.


Source #

File: themes/ld30/templates/focus/footer.php


Examples #

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

 <?php
/**
 * Example usage for learndash-focus-template-end action.
 */
add_action(
	'learndash-focus-template-end',
	function( $course_id ) {
		// May add any custom logic using $course_id

	}
);
 

Changelog #

Changelog
Version Description
3.0.0 Introduced.