Codex tools: Log in
Contents |
Scale an image to fit a particular size (such as 'thumb' or 'medium').
The $max_/$min_width for the Reserved Names will always be what you defined under "admin UI" » "Settings" » "Media". You may go and blame the internals of image_constrain_size_for_editor() for it.
image_downsize() is located in wp-includes/media.php.
Maybe you already know wp_get_attachment_thumb_url();. Now I'm showing how to do the same thing to return the url for the medium sized attachment.
function wp_get_attachment_medium_url( $id )
{
$medium_array = image_downsize( $id, 'medium' );
$medium_path = $medium_array[0];
return $medium_path;
}
$id is the ID of the attachment
This can be really useful for plugins like WP-Choose-Thumb. With this function you can get the medium sized previews.