wp_expand_dimensions()
Based on a supplied width/height example, returns the biggest possible dimensions based on the max width/height.
No Hooks.
Returns
Int[]. An array of maximum width and height values.
Usage
wp_expand_dimensions( $example_width, $example_height, $max_width, $max_height );
- $example_width(int) (required)
- The width of an example embed.
- $example_height(int) (required)
- The height of an example embed.
- $max_width(int) (required)
- The maximum allowed width.
- $max_height(int) (required)
- The maximum allowed height.
Notes
Changelog
| Since 2.9.0 | Introduced. |
wp_expand_dimensions() wp expand dimensions code WP 6.9.1
function wp_expand_dimensions( $example_width, $example_height, $max_width, $max_height ) {
$example_width = (int) $example_width;
$example_height = (int) $example_height;
$max_width = (int) $max_width;
$max_height = (int) $max_height;
return wp_constrain_dimensions( $example_width * 1000000, $example_height * 1000000, $max_width, $max_height );
}