umutsuz temayı nerden alabilirim diye sormamış

nasıl yapabilirim diye soruyor.
sabroza; gerekli css kodlamasını yaptıktan sonra bunu kategori id'leri ile yapabilirsiniz. örenk kod
bu resimli olan bölümü çeker
<?php $recent = new WP_Query("cat=karegori-id&showposts=post sayısı muhtemelen 1 olur"); while($recent->have_posts()) : $recent->the_post();?>
<?php if( get_post_meta($post->ID, "entry-preview", 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, "entry-preview", 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(); ?>" width="70" height="70" /></a>
<?php endif; ?>
<b><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></b>
<?php the_content_limit(80, ""); ?>
<div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
<?php endwhile; ?>bu da hemen sağındaki 7 linki veren kod
<?php $recent = new WP_Query("cat=kategori id&showposts=7"); while($recent->have_posts()) : $recent->the_post();?>
<?php if( get_post_meta($post->ID, "resim", true) ): ?>
<?php else: ?>
<?php endif; ?>
<b><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></b>
<?php endwhile; ?>burada dikkat etmeniz gereken şey; bu kod her blok için ayrı ayrı uygulanmalı ve resimli bölüm ile sadece title kısmını çeken kategori-id lerinin aynı olmasına dikkat edin. iyi çalışmalar..