Usta öncelikle cevap verdigin için teşekkür ediyorum..Yalnız anlamadıgım bir nokta var.Wp den post girince otomatik yapması gerekmiyor mu bunu..
Siz şu kodu verdiniz..
<p><img alt="" src="resmin.jpg" width="201" height="181"

Burada src="resmin.jpg" bunu bizmi seçmemiz lazım her girişte..

--R10.NET; Flood Engellendi -->-> Yeni yazılan mesaj 14:39:47 -->-> Daha önceki mesaj 14:35:59 --

Kodlarda şu:
<div class="habersirala">


<!-- Döngü başlıyor -->
<?php query_posts('showposts=5&orderby=date&cat=17'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

<div class="article">

<div class="article-header">

<!-- Yazı başlığı -->
<h1>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
</h1>

<!-- Yazı bilgileri -->
<ul>
<li>Tarih : <?php the_time('j F Y'); ?></li>
<li>Kategori : <?php the_category(', ') ?></li>
<li><?php comments_number('Yorum Yok', '1 Yorum ', '% Yorum' );?></li>
</ul>

<div class="clear"></div>

</div>

<div class="article-content">

<div class="article-thumbnail">

<!-- Yazının küçük resmi -->

<?php if ( has_post_thumbnail()) { ?>
<?php the_post_thumbnail('index-thumbnail'); ?>


<?php } ?>
</div>

<div class="clear"></div>

<div class="articleyazi">
<!-- Yazının içeriği -->
<?php the_content();?>
<div class="clear"></div>
</div>

</div>

</div>

<!-- Döngü bitiyor -->
<?php endwhile; else: ?>

<?php endif; ?>

</div> </div>