Arkadaş belirli kategorilerden yazı göstermek istemiş ana sayfada.
Alıntı
<?php $recent = new WP_Query("cat=1&showposts=3"); while($recent->have_posts()) : $recent->the_post();?>
<?php if( get_post_meta($post->ID, "thumbnail", true) ): ?>
<a href="<?php the_permalink() ?>" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="<?php echo get_post_meta($post->ID, "thumbnail", true); ?>" alt="<?php the_title(); ?>" width="70" height="70"/></a>
<?php else: ?>
<a href="<?php the_permalink() ?>" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="<?php bloginfo('template_url'); ?>/images/thumbnail.png" alt="<?php the_title(); ?>" /></a>
<?php endif; ?>
<b><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></b>
Kodunu kullanarak yapabilirsin. Kırmızı yere kategori id'si, yeşil yere göstermek istediğin yazı sayısı gelecek. Görünümünü, sayfadaki yerleşimini ayarlamak sana kalmış css yardımıyla.
Bu kodları lifestyle temasından kopyaladım. Direk o temayı kullanabilirsin istersen.