Wordpres ile bazen belirli yerlere istediğimiz kategoride istediğimiz kadar post çekmek isteyebiliriz. Bu gibi durumlarda Wordpresin bize verdiği wp_query kullanacağız. Aşağıdaki kodta 12 id sine sahip kategoriden 8 tane post çektim. Gayet basit istediğiniz yerleri değiştirip rahatlıkla kullanabilirsiniz.
<?php
$rahimcan
=
new
WP_Query(
"showposts=5&cat=1"
);
while
(
$rahimcan
->have_posts()) :
$rahimcan
->the_post();?>
<li><a href=
"<?php the_permalink() ?>"
rel=
"bookmark"
title=
"<?php the_title_attribute(); ?>"
><?php the_title(); ?></a></li>
<?php
endwhile
; ?>