syamilmj / Aqua-Resizer

Resize WordPress images on the fly
502 stars 205 forks source link

external urls via custom fields #106

Open ShpendBerisha opened 6 years ago

ShpendBerisha commented 6 years ago

Im trying to something like this one:


$thumb = get_post_meta($post->ID, 'thumb_url', true);
$aq_thumb_field = aq_resize( $thumb, 244, 298, true );

when I use a local image in the custom field value its working fine but with external urls it doesnt work.

Im using a video grabber plugin which adds external thumb urls but it doesnt resize the external images.Thankyou.