Good day,
I would like to know how to change this code:
<?php $recent = new WP_Query("cat=4&showposts=4"); while($recent->have_posts()) : $recent->the_post();?>
to display more categories, instead of only one?
Newbie here, thank you.
Good day,
I would like to know how to change this code:
<?php $recent = new WP_Query("cat=4&showposts=4"); while($recent->have_posts()) : $recent->the_post();?>
to display more categories, instead of only one?
Newbie here, thank you.
<?php $recent = new WP_Query("showposts=4"); while($recent->have_posts()) : $recent->the_post();?>
Try this once.
This topic has been closed to new replies.