Black_Sky
کاربر عضو
ساده است كافيه id هر دسته دربياريد و با كد زير نمايش بديد:
کد:
<?php
$i=0;
$recent = new WP_Query("showposts=10&cat=x");
while($recent->have_posts()) : $recent->the_post();?>
<ul>
<li><a href="<?php the_permalink() ?>" ><?php the_title(); ?></a></li>
</ul>
<?php endwhile; ?>