Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
llms_earned_engagement_deprecated_content( string $val, LLMS_User_Certificate|LLMS_User_Achievement $obj )
Backwards compatibility for the deprecated earned engagement content meta keys.
Description Description
This public function is intentionally marked as private to denote it’s temporary lifespan. This function will be removed in the next major release when the associated meta key is also fully removed.
Parameters Parameters
- $val
-
(string) (Required) Default value (an empty string).
- $obj
-
(LLMS_User_Certificate|LLMS_User_Achievement) (Required) User engagement object.
Return Return
(string)
Source Source
File: includes/functions/llms-functions-deprecated.php
function llms_earned_engagement_deprecated_content( $val, $obj ) { _llms_earned_engagement_deprecated_function( $obj, 'content', 'the WP_Post object property "post_content"' ); return $obj->get( 'content' ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
6.0.0 | Introduced. |