LLMS_Course::get_percent_complete( $user_id = '' )
Get a user’s percentage completion through the course
Return Return
(float)
Source Source
File: includes/models/model.llms.course.php
527 528 529 530 531 532 533 534 535 | public function get_tracks( $args = array () ) { return wp_get_post_terms( $this ->get( 'id' ), 'course_track' , $args ); } /** * Retrieve an array of students currently enrolled in the course * * @since 1.0.0 * @since 3.0.0 Use `LLMS_Course::get_students()`. |
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.17.2 | Unknown. |
1.0.0 | Introduced. |