Sam3 saidI beleive there talking about resizing on the fly I.E if you change
OllieMcCarthy said
I’m pretty sure that WP thumbnails can be resized to anything if you setup multiple dimensions in functions.php. A downside to this is that you will have multiple versions of your images taking up unnecessary space. Also it can be tricky implementing the thumbnails into different jQuery plugins.I think Timthumb also stores multiple versions of images
IMO these-days post thumbnail is a must have option, it’s a trend that’s why WP implemented this feature
also We can re-size itset_post_thumbnail_size( 300, 100, true );
set_post_thumbnail_size( 300, 100, true );
to
set_post_thumbnail_size( 400, 200, true );
while the theme has posts with the first dimensions used it doesn’t automatically resize them to the new dimensions
- Microlancer Beta Tester
- Sold between 5 000 and 10 000 dollars
- Most Wanted Bounty Winner
- Bought between 10 and 49 items
- Exclusive Author
- Has been a member for 2-3 years
@OrganicBeeMedia
Thanks for the response. I’ll try it…
- Microlancer Beta Tester
- Sold between 5 000 and 10 000 dollars
- Most Wanted Bounty Winner
- Bought between 10 and 49 items
- Exclusive Author
- Has been a member for 2-3 years
For Additional Custom Sizes
We can create any number of custom thumbnail sizes quite easily…
if (function_exists('add_theme_support')) {
add_theme_support('post-thumbnails');
set_post_thumbnail_size(120, 90, true);
add_image_size('my-thumb', 480, 250, true);
}
Retrieving Custom Sizes
<?php the_post_thumbnail('my-thumb'); ?>
- Author had a File in an Envato Bundle
- Author was Featured
- Bought between 50 and 99 items
- Exclusive Author
- Has been a member for 4-5 years
- Item was Featured
- Referred between 500 and 999 users
- Sold between 250 000 and 1 000 000 dollars
OrganicBeeMedia said
while the theme has posts with the first dimensions used it doesn’t automatically resize them to the new dimensions
One thing to note, too, is that there are plugins you can use (or tell your buyers to use) that will go through all already uploaded media attachments and make images for your current thumbnail sizes. This is really helpful when you’re developing a site or theme and you keep changing the thumbnail sizes as you work.
Sam3 said
For Additional Custom Sizes We can create any number of custom thumbnail sizes quite easily…if (function_exists('add_theme_support')) { add_theme_support('post-thumbnails'); set_post_thumbnail_size(120, 90, true); add_image_size('my-thumb', 480, 250, true); }Retrieving Custom Sizes<?php the_post_thumbnail('my-thumb'); ?>
yes thats very easy but make it so users can change it through the wp-admin panel it wont resize previous posted images
- Microlancer Beta Tester
- Sold between 5 000 and 10 000 dollars
- Most Wanted Bounty Winner
- Bought between 10 and 49 items
- Exclusive Author
- Has been a member for 2-3 years
@themeblvd
that needs to remain in tact for older posts that were created before WP 2 .9.
