do_action( 'learndash-nav-before-inner-section-heading', WP_Post $section, int $course_id, int $user_id )
Fires before the section title (inside wrapper).
Description #
Parameters #
- $section
-
(WP_Post)
WP_Postobject for section. - $course_id
-
(int) Course ID.
- $user_id
-
(int) User ID.
Source #
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash-nav-before-inner-section-heading action.
*/
add_action(
'learndash-nav-before-inner-section-heading',
function( $section, $course_id, $user_id ) {
// May add any custom logic using $section, $course_id, $user_id
},
10,
3
);
Changelog #
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |