wp_image_resize_identical_dimensions
Filters whether to proceed with making an image sub-size with identical dimensions with the original/source image. Differences of 1px may be due to rounding and are ignored.
Использование
add_filter( 'wp_image_resize_identical_dimensions', 'wp_kama_image_resize_identical_dimensions_filter', 10, 3 );
/**
* Function for `wp_image_resize_identical_dimensions` filter-hook.
*
* @param bool $proceed The filtered value.
* @param int $orig_w Original image width.
* @param int $orig_h Original image height.
*
* @return bool
*/
function wp_kama_image_resize_identical_dimensions_filter( $proceed, $orig_w, $orig_h ){
// filter...
return $proceed;
}
- $proceed(true|false)
- The filtered value.
- $orig_w(int)
- Original image width.
- $orig_h(int)
- Original image height.
Список изменений
| С версии 5.3.0 | Введена. |
Где вызывается хук
wp_image_resize_identical_dimensions
wp-includes/media.php 661
$proceed = (bool) apply_filters( 'wp_image_resize_identical_dimensions', false, $orig_w, $orig_h );