在wordpress中如何按侧栏中的类别显示帖子?
答案 0 :(得分:-1)
[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;?>