query_postsを使うと条件に該当する記事を取得して、表示したい件数を指定できます。
トップページindex.phpなどに特定のカテゴリーやタグの記事を表示したい場合に便利です。
タグ(タグスラッグ)”wordpress”の記事タイトルを5件リンク付でリスト表示
<ul> <?php query_posts($query_string ."tag=wordpress&showposts=5"); ?> <?php while (have_posts()) : the_post(); ?> <li><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li> <?php endwhile; ?> </ul>
カテゴリー(カテゴリーID)”25”の記事タイトルを5件リンク付でリスト表示
<ul> <?php query_posts($query_string ."cat=25&showposts=5"); ?> <?php while (have_posts()) : the_post(); ?> <li><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li> <?php endwhile; ?> </ul>