LLMS_Abstract_User_Engagement::get_related_post_id()
Get the WP Post ID of the post which triggered the earning of the certificate
Description Description
This would be a lesson, course, section, track, etc…
Return Return
(int)
Source Source
File: includes/abstracts/llms-abstract-user-engagement.php
public function get_related_post_id() { $meta = $this->get_user_postmeta(); return isset( $meta->post_id ) ? absint( $meta->post_id ) : $this->get( 'related' ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
6.0.0 | Migrated from LLMS_User_Certificate and LLMS_User_Achievement. |
4.5.0 | Force return to an integer. |
3.8.0 | Introduced. |