1 | <h2><?php wp_list_categories('include=11&title_li=&style=none'); ?></h2> //输出 ID 为11的分类的标题 |
1 | <?php echo category_description(11); ?> //输出 ID 为11的分类的描述 |
1 | <?php query_posts('cat=11&showposts=5'); ?> //query_posts 给 The Loop 限定的条件是:显示5篇日志和分类 ID 为11,cat=-11代表的是把分类ID为11的文章去掉 |
1 | <?php while (have_posts()) : the_post(); ?> //The Loop 开始 |
1 | <li><a href="<?php the_permalink() ?>" rel="bookmark" class="title"><?php the_title(); ?></a></li> //用列表的方式输出带有链接的文章标题 |
1 | <?php endwhile; ?> //The Loop 结束 |