wordpress - posts by category
in wordpress how to display p开发者_如何学运维osts by category in sidebar?
- Try this plugin for listing the category posts as widget for your sidebar.
Category Posts Widget
[OR]
<?php query_posts('category_name=your-category-name&showposts=5&order=asc'); ?>
<?php while (have_posts()) : the_post(); ?>
<h2 class="head1"><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile;?>
精彩评论