do_action( 'learndash-focus-template-end', int $course_id )
Fires after the assignments upload message.
Description #
Parameters #
- $course_id
-
(int) Course ID.
Source #
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 #
Version | Description |
---|---|
3.0.0 | Introduced. |