1 | <h2><?php wp_list_categories('include=11&title_li=&style=none'); ?></h2> //輸出 ID 為11的分類的標(biāo)題 |
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> //用列表的方式輸出帶有鏈接的文章標(biāo)題 |
1 | <?php endwhile; ?> //The Loop 結(jié)束 |