wordpress displaying the post in a specific categories
- by Juliver Galleto
I have this php code below for displaying the post from the specific categories.
<ul id="sliderx">
<?php query_posts('category_name=slideshow&showposts=10');
while (have_posts()) : the_post();
echo "<li>".the_content()."</li>";
endwhile;?>
</ul>
as you can see, it display those post in the category slideshow and…