Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




wp_expand_dimensions [ WordPress Function ]

wp_expand_dimensions ( $example_width, $example_height, $max_width, $max_height )
Parameters:
  • (int) $example_width The width of an example embed.
  • (int) $example_height The height of an example embed.
  • (int) $max_width The maximum allowed width.
  • (int) $max_height The maximum allowed height.
Uses:
Returns:
  • (array) The maximum possible width and height based on the example ratio.
Defined at:



Based on a supplied width/height example, return the biggest possible dimensions based on the max width/height.

Source


<?php
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 );
}
?>

Examples [ wp-snippets.com ]

Top Google zoekresultaten

Meer ...

Gebruikersdiscussies [ wordpress.org ]

0 User Note(s)

Nog geen één. Wees de eerste!

Nieuw toevoegen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics