よく使う投稿一覧

最終更新日

件数=20,カテゴリID1,2,3(除外4)の場合

<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>