wp_high_priority_element_flag( bool $value = null ): bool

In this article

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.

Accesses a flag that indicates if an element is a possible candidate for fetchpriority='high'.

Parameters

$valuebooloptional
Used to change the static variable.

Default:null

Return

bool Returns true if high-priority element was marked already, otherwise false.

Source

 * from an already provided `loading` attribute), trigger a warning.
 * Otherwise, the value can be interpreted as in viewport, since only
 * the most important in-viewport image should have `fetchpriority` set
 * to "high".
 */
if ( false === $maybe_in_viewport ) {
	_doing_it_wrong(
		__FUNCTION__,
		__( 'An image should not be lazy-loaded and marked as high priority at the same time.' ),

Changelog

VersionDescription
6.3.0Introduced.

User Contributed Notes

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