ThemeForest

Is it necessary to use Timthumb in Wordpress 2.9+ ?

2935 posts
  • Community Superstar
  • Sold between 1 000 and 5 000 dollars
  • Bought between 10 and 49 items
  • Has been a member for 2-3 years
  • United States
  • Exclusive Author
chrisakelley says


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 it
    set_post_thumbnail_size( 300, 100, true );
I beleive there talking about resizing on the fly I.E if you change
    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

323 posts
  • 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
kaaz says

@OrganicBeeMedia

Thanks for the response. I’ll try it…

323 posts
  • 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
kaaz says

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'); ?>
1025 posts
  • Author had a File in an Envato Bundle
  • Bought between 50 and 99 items
  • Elite Author
  • Exclusive Author
  • Has been a member for 4-5 years
  • Referred between 500 and 999 users
  • Sold between 250 000 and 1 000 000 dollars
+1 more
ThemeBlvd says

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.

2935 posts
  • Community Superstar
  • Sold between 1 000 and 5 000 dollars
  • Bought between 10 and 49 items
  • Has been a member for 2-3 years
  • United States
  • Exclusive Author
chrisakelley says

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

323 posts
  • 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
kaaz says

@themeblvd

that needs to remain in tact for older posts that were created before WP 2 .9.

by
by
by
by
by