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_Settings_Engagements::get_award_image_desc( string $post_type )
Retrieves the award image setting description HTML.
Parameters Parameters
- $post_type
-
(string) (Required) Translated post type name.
Return Return
(string)
Source Source
File: includes/admin/settings/class.llms.settings.engagements.php
private function get_award_image_desc( $post_type ) { $desc = sprintf( __( 'A default image used for any %1$s template or award which does not specify an image. Changing this setting will affect all existing templates and awards which do not specify their own image.', 'lifterlms' ), $post_type ); return '<p class="description">' . $desc . '</p>'; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
6.0.0 | Introduced. |