gambitph / WP-OTF-Regenerate-Thumbnails

Automatically regenerates your thumbnails on the fly when thumbnail sizes change.
https://wordpress.org/plugins/otf-regenerate-thumbnails/
GNU General Public License v2.0
77 stars 16 forks source link

Added crop parameter support #14

Closed eoutvik closed 9 years ago

eoutvik commented 9 years ago
wp_get_attachment_image_src($attachment_id, array(300,300, true));

Will return the same as:

wp_get_attachment_image_src($attachment_id, array(300,300));  

Additionally you can also set the crop parameter to false like this:

wp_get_attachment_image_src($attachment_id, array(300,300, false));

:+1:

oherman commented 9 years ago

After deliberation, this one's accepted. Thanks for your contribution.