Browse: Home / Hooks /

learndash-course-expand-after

do_action( 'learndash-course-expand-after',  int $course_id,  int $user_id )

Fires after the course content expand button.


Description #


Parameters #

$course_id

(int) Course ID.

$user_id

(int) User ID.


Source #

File: themes/ld30/templates/course.php


Examples #

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

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

	},
	10,
	2
);
 

Changelog #

Changelog
Version Description
3.0.0 Introduced.