When it comes to excerpts, do you believe TimThumb or WordPress thumbnails is the way to go? And why? Answers will not be graded (but may be criticized).
Leave a Reply
You must be logged in to post a comment.
When it comes to excerpts, do you believe TimThumb or WordPress thumbnails is the way to go? And why? Answers will not be graded (but may be criticized).
You must be logged in to post a comment.
In my opinion the built in
<?php add_image_size( $name, $width, $height, $crop ); ?>
function is much more flexible, easy and with less overhead. It does resize-crop, so I don’t see a reason to go back to TimThumb (which I used extensively in the past).WordPress image handling, without question.
The only thing that TimThumb has that is currently not possible with core image handling is zoom crop. Everything else can be accomplished using core image handling, including on-the-fly resizing.
I see absolutely no advantage to using TimThumb, and only disadvantages. It was a great tool prior to WordPress 2.9, but has been essentially unnecessary since then.
EDIT
Advantages to using core system:
Timthumb’s ONLY advantage is in reducing the quantity of files stored on the server. By default WordPress creates 3 images from each upload. If you add additional sizes it will create a new image file for each of those as well.
Basic Usage:
1000 Posts with an average of 5 images per post will produce a minimum of 15,000 images.
Using 5 custom sizes for the crop value used in post listings, etc…
1000 Posts with an average of 5 images per post will produce a minimum of 40,000 images.
Shared hosting environments can limit the number of files on a server to 50,000 or less… thus the helpful use of timthumb which would keep the files stored lower.
That’s my 2 cents….
I choose the third option:
http://wordpress.org/extend/plugins/custom-image-sizes/
It generates custom thumbnail sizes on the fly, while still being integrated into WordPress.
Really, with that plugin around, you should never need to use TimThumb again.