wordpress - 按类别发布的帖子

时间:2011-02-09 10:24:32

标签: wordpress

在wordpress中如何按侧栏中的类别显示帖子?

1 个答案:

答案 0 :(得分:-1)

  1. 尝试使用此插件将类别帖子列为您的小部件 侧栏。
  2. 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;?>