How to automatically resize images in featured post on wordpress

Status
Not open for further replies.

Jayzzy

Active Member
1,201
2009
191
0
As the title says guys i need the images to resize automatically in featured area of the site

this is the site but the images in featured box are kinda messy

any idea how to do it

i tried resizing the images manually but didnt worked

any help will be appreciated

http://djshahrukh.net/wordpress/
 
1 comment
Tried using the thumbnail functions?

Add this in your functions file:
// Enable post thumbnails
add_theme_support('post-thumbnails');
set_post_thumbnail_size(520, 250, true);

size=520x250 - crop=true

Then call it:
<?php the_post_thumbnail(); ?>

Or, use timthumb.
 
Status
Not open for further replies.
Back
Top