よく使う投稿一覧
件数=20,カテゴリID1,2,3(除外4)の場合
1 2 3 4 5 6 7 |
<dl> <?php query_posts('posts_per_page=20&cat=1,2,3,-4'); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <dt><?php the_time('Y.m.d'); ?></dt> <dd><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></dd> <?php endwhile;endif; ?> </dl> |