You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With BFI_Thumb I can generate a thumbnail (and creates a cached file in uploads/bfi_thumb/)only when I want to insert the image into the page, which is exactly what I want to do with my images:
readme on https://github.com/gambitph/WP-OTF-Regenerate-Thumbnails Basically just use these WordPress functions every time you display images:
wp_get_attachment_image_src();
wp_get_attachment_image();
the_post_thumbnail();
get_the_post_thumbnail(); Like this: wp_get_attachment_image( $attachment_id, array(160, 90) );
Hi there
With BFI_Thumb I can generate a thumbnail (and creates a cached file in
uploads/bfi_thumb/
)only when I want to insert the image into the page, which is exactly what I want to do with my images:uploads/
(like BFI_Thumb does it)?Thanks!
The text was updated successfully, but these errors were encountered: