İndex.php'nin
<?php get_header(); ?> kodunun altına ekle.
5 yerine anasayfada çıkmasını istediğin kategorinin id'sini yaz.
<?php
if (is_home()) {
query_posts("cat=5");
}
?>Aşağıdaki kodu boyutlandırılmasını istediğin resimin kodları ile değiştir tabi kodları kendine göre düzenle.
<?php if(has_post_thumbnail()): ?>
<?php $image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'widget-image'); ?>
<a href='<?php the_permalink(); ?>' title='<?php the_title(); ?>'><img src="<?php echo $image[0]; ?>" alt="<?php the_title(); ?>" width='140' height='84' /></a>
<?php else: ?>
<a href='<?php the_permalink(); ?>' title='<?php the_title(); ?>'><img src="<?php bloginfo('template_directory'); ?>/timthumb.php?src=<?php bloginfo('template_directory'); ?>/images/thumbnail.png&w=140&h=84" alt="<?php the_title(); ?>" width='140' height='84' /></a>
<?php endif; ?>Daha sonra functions.php dosyasını aşağıdaki kodları ekle. tabi yine düzenleyerek.
add_theme_support('post-thumbnails', array('post'));
add_image_size('widget-image', 290, 160, true);Eğer yapamaz isen ücretli bir şekilde halledebilirim.