@d4hi'nin söylediği gibi yapabilirsiniz.
kullanmanız gereken kod:
Alıntı
<?php $recent = new WP_Query("cat=1&showposts=10&offset=0"); while($recent->have_posts()) : $recent->the_post();?>
----yazı bilgileri buraya-----
<?php endwhile; ?>
önce resimli yazı için bu kodu kullanıp, showposts=1 yaparsınız. bu sayede editör kategorisindeki ilk yazı gelir.
sonra, kodu tekrar kullanıp, showposts=5&offset=0 yaparsınız. bu sayede demin aldığı ilk postu almadan sadece linkleri listeler.
cat=1 (1 kategori numarası)
showposts=5 (5 yazı listelensin)
offset=1 (ilk yazı hariç) anlamındadır.
sonuçta kod şöyle bir şey olur:
Alıntı
<?php $recent = new WP_Query("cat=1&showposts=1&offset=0"); while($recent->have_posts()) : $recent->the_post();?>
----resimli yazı bilgileri buraya-----
<?php endwhile; ?>
<?php $recent = new WP_Query("cat=1&showposts=5&offset=1"); while($recent->have_posts()) : $recent->the_post();?>
----resimsiz yazı bilgileri buraya-----
<?php endwhile; ?>
yazı bilgilerini ve css düzenlemesi lazım.