llms_unenroll_student( int $user_id, int $product_id, string $new_status = 'expired', string $trigger = 'any' )
Remove a LifterLMS Student from a course or membership
Contents
Description Description
See also See also
- LLMS_Student->unenroll(): the class method wrapped by this function
Parameters Parameters
- $user_id
-
(int) (Required) WP User ID.
- $product_id
-
(int) (Required) WP Post ID of the Course or Membership.
- $new_status
-
(string) (Optional) The value to update the new status with after removal is complete.
Default value: 'expired'
- $trigger
-
(string) (Optional) Only remove the student if the original enrollment trigger matches the submitted value. Passing "any" will remove regardless of enrollment trigger.
Default value: 'any'
Return Return
(boolean)
Source Source
File: includes/functions/llms.functions.person.php
* @param string $val Cookie value. * @return bool */ function llms_set_password_reset_cookie( $val = '' ) {
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |