LLMS_Engagement_Handler::handle_certificate( array $args )
Award an certificate
Parameters Parameters
- $args
-
(array) (Required) Indexed array of arguments.<br>
- (int) WP_User ID.<br>
- '1'
(int) WP_Post ID of the certificate template post.<br> - '2'
(int|string) WP_Post ID of the related post that triggered the award or an empty string.<br> - '3'
(int) WP_Post ID of the engagement post.<br>
Return Return
(WP_Error[]|LLMS_User_Certificate) Returns an array of error objects on failure or the generated certificate object on success.
Source Source
File: includes/class-llms-engagement-handler.php
public static function handle_certificate( $args ) {
return self::handle( 'certificate', $args );
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 6.0.0 | Introduced. |