<div class="hpfeatured">
<h3>Manşet Kategorisi 1</h3>
<!--Manşet kategorisi ID #1, olarak ayarlıdır cat=1 olarak ayarlanmıştır category ID numarasını değiştirin - custom field ismi "thumbnail". resim boyutu 70x70, olması gerekir.-->
<?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>
<?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; ?>
<!--Hangi kategoriyi koyacaksanız # olan yere kategori url sini yazın-->
<b><a href="#" rel="bookmark">Kategorinin diğer yazıları</a></b>
</div>
</div>üstteki kodu alttaki kodla değiştir
<div class="hpfeatured">
<h3>Manşet Kategorisi 1</h3>
<!--Manşet kategorisi ID #1, olarak ayarlıdır cat=1 olarak ayarlanmıştır category ID numarasını değiştirin - custom field ismi "thumbnail". resim boyutu 70x70, olması gerekir.-->
<?php $recent = new WP_Query("cat=117&showposts=3"); while($recent->have_posts()) : $recent->the_post();?>
<b><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></b>
<?php $id =$post->ID;
$the_content =$wpdb->get_var("SELECT post_content FROM $wpdb->posts WHERE ID = $id");
$pattern = '!<img.*?src="(.*?)"!';
preg_match_all($pattern, $the_content, $matches);
$image_src = $matches['1'][0]; ?>
<img src="<?php if($image_src != '') { echo $image_src; } ?>"
alt="<?php the_title(); ?>" class="left" width="70px" height="70px" />
<?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; ?>
<!--Hangi kategoriyi koyacaksanız # olan yere kategori url sini yazın-->
<b><a href="#" rel="bookmark">Kategorinin diğer yazıları</a></b>
</div>
</div>bu kodlar konu içindeki ilk resmi özel alana ekler