# performance-lab/1.8.0/modules/images/fetchpriority/load.php

Performance Lab, version 1.8.0. 55 lines.

- Page: https://pluginprobe.com/plugins/performance-lab/1.8.0/code/modules/images/fetchpriority/load.php
- Raw: https://pluginprobe.com/plugins/performance-lab/1.8.0/raw/modules/images/fetchpriority/load.php
- Modified: 2022-12-19T18:15:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/performance-lab/1.8.0/code/modules/images/fetchpriority/load.php#L10-L20`.

```php
<?php
/**
 * Module Name: Fetchpriority
 * Description: Adds a fetchpriority hint for the primary content image on the page to load faster.
 * Experimental: Yes
 *
 * @since 1.8.0
 * @package performance-lab
 */

/**
 * Filters an image tag in content to add the fetchpriority attribute if it is not lazy-loaded.
 *
 * @since 1.8.0
 *
 * @param string $filtered_image The image tag to filter.
 * @param string $context        The context of the image.
 * @return string The filtered image tag.
 */
function fetchpriority_img_tag_add_attr( $filtered_image, $context ) {

	if ( 'the_content' !== $context && 'the_post_thumbnail' !== $context ) {
		return $filtered_image;
	}

	// Fetchpriority relies on lazy loading logic.
	if ( ! wp_lazy_loading_enabled( 'img', $context ) ) {
		return $filtered_image;
	}

	if ( ! empty( $filtered_image ) && strpos( $filtered_image, 'loading="lazy"' ) === false && strpos( $filtered_image, 'fetchpriority=' ) === false ) {
		$filtered_image = str_replace( '<img ', '<img fetchpriority="high" ', $filtered_image );
		remove_filter( 'wp_content_img_tag', 'fetchpriority_img_tag_add_attr' );
		remove_filter( 'post_thumbnail_html', 'fetchpriority_filter_post_thumbnail_html' );
	}

	return $filtered_image;
}
add_filter( 'wp_content_img_tag', 'fetchpriority_img_tag_add_attr', 10, 2 );

/**
 * Filters the post thumbnail HTML to conditionally add the fetchpriority attribute.
 *
 * @since 1.8.0
 *
 * @param string $html The post thumbnail HTML to filter.
 * @return string The filtered post thumbnail HTML.
 */
function fetchpriority_filter_post_thumbnail_html( $html ) {
	$html = fetchpriority_img_tag_add_attr( $html, 'the_post_thumbnail' );

	return $html;
}
add_filter( 'post_thumbnail_html', 'fetchpriority_filter_post_thumbnail_html' );

```
