<?php $recent = new WP_Query("cat=1&showposts=10"); while($recent->have_posts()) : $recent->the_post();?>
I'm trying to add the category name to the code so it would show category name than post name in the link, any clue?
<?php $recent = new WP_Query("cat=1&showposts=10"); while($recent->have_posts()) : $recent->the_post();?>
I'm trying to add the category name to the code so it would show category name than post name in the link, any clue?
figured it out...
You must log in to post.