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.


Top ↑

Return Return

(string)


Top ↑

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>';

	}


Top ↑

Changelog Changelog

Changelog
Version Description
6.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.