Wordpress Kategoriye Göre İçerik Çekme - Google Fan Webmaster Forum https://www.r10.net/wordpress/465477-...post1059526215 <?php $CatPosts = new WP_Query("cat=1&showposts=5"); while($CatPosts->have_posts()) : $CatPosts->the_post();?>
Başlık: <?php the_title(); ?>
Link: <?php the_permalink() ?>
Özet: <?php the_excerpt(); ?>
Metin: <?php the_content(); ?>
<?php endwhile; ?>cat=
1 Kategori ID no.sudur.
showposts=
5 Gösterilecek yazı sayısıdır.