特定のカテゴリを除外する場合
query_posts(‘cat=-6’);
これでOK。
月別: 2010年8月
[wordpress]ページ内に特定のカテゴリを表示
wordpressのページにて特定のカテゴリを表示する方法。
<?php query_posts(‘showposts=5&cat=5,6’); ?>
<?php while (have_posts()) : the_post(); ?>
<li>
<dl>
<dt><?php the_time(‘Y年m月d日’) ?></dt>
<dd><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></dd>
</dl>
</li>
<?php endwhile; ?>
<?php while (have_posts()) : the_post(); ?>
<li>
<dl>
<dt><?php the_time(‘Y年m月d日’) ?></dt>
<dd><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></dd>
</dl>
</li>
<?php endwhile; ?>
showpostsは記事の表示数。catはカテゴリID。