big_image_size_threshold
Filters the "BIG image" threshold value.
If the original image width or height is above the threshold, it will be scaled down. The threshold is used as max width and max height. The scaled down image will be used as the largest available size, including the _wp_attached_file post meta value.
Returning false from the filter callback will disable the scaling.
Usage
add_filter( 'big_image_size_threshold', 'wp_kama_big_image_size_threshold_filter', 10, 4 ); /** * Function for `big_image_size_threshold` filter-hook. * * @param int $threshold The threshold value in pixels. * @param array $imagesize Indexed array of the image width and height in pixels. * @param string $file Full path to the uploaded image file. * @param int $attachment_id Attachment post ID. * * @return int */ function wp_kama_big_image_size_threshold_filter( $threshold, $imagesize, $file, $attachment_id ){ // filter... return $threshold; }
- $threshold(int)
- The threshold value in pixels.
Default: 2560 - $imagesize(array)
Indexed array of the image width and height in pixels.
-
0(int)
The image width. - 1(int)
The image height.
-
- $file(string)
- Full path to the uploaded image file.
- $attachment_id(int)
- Attachment post ID.
Changelog
Since 5.3.0 | Introduced. |
Where the hook is called
big_image_size_threshold
wp-admin/includes/image.php 288
$threshold = (int) apply_filters( 'big_image_size_threshold', 2560, $imagesize, $file, $attachment_id );