WordPress Belirli Kategoriden Belirli Sayıda Yazı Çekme
Notlar:
cat=3 // bu kısımda hangi kategoriden yazı çekilecekse id’sini gir.
showposts=5 // bu kısımda kaç adet yazı gösterilecek onu gir.
if (have_posts()) : $posts= new WP_Query("cat=3&showposts=5"); while($posts->have_posts()) : $posts->the_post(); //döndürülecek kod bloğu (div vs.) endwhile; endif
Ara bul