wppaste
WordPress

apply_filters( 'max_srcset_image_width', int $max_width, int[] $size_array )

Since
4.4.0
Filters the maximum image width to be included in a 'srcset' attribute.

Compatibility

WordPress
since 4.4.0
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0).

Parameters

$max_widthint
The maximum image width to be included in the 'srcset'. Default '2048'.
$size_arrayint[]
{ An array of requested width and height values.
@type int $0 The width in pixels.
@type int $1 The height in pixels.
}
  • $0int

    The width in pixels.
  • $1int

    The height in pixels.

Where this hook fires · 1

  • wp-includes/media.php:1444wp_calculate_image_srcset()

Source code

	 *     An array of requested width and height values.	 *	 *     @type int $0 The width in pixels.	 *     @type int $1 The height in pixels.	 * }	 */	$max_srcset_image_width = apply_filters( 'max_srcset_image_width', 2048, $size_array ); 	// Array to hold URL candidates.	$sources = array(); 	/**	 * To make sure the ID matches our image src, we will check to see if any sizes in our attachment

Changelog

Introduced in 4.4.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 6.9.7 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.