特定のタグを含む記事一覧を表示させる
WordPressにはカテゴリーの他、タグがあります。
この特定のタグが登録されている記事の一覧を表示させる方法を紹介します。
テーマを編集する
<?php query_posts('tag=PHP&showposts=10'); ?> <?php if ( have_posts() ): while ( have_posts() ): the_post(); ?> <div class="post"> <div class="date"><?php the_time('Y/m/d');?></dt> <div class="body"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></dd> </div> <?php endwhile; endif; ?>
query_posts() の引数「tag」に表示させたいタグ名を入れます。
上記の例ではタグ「PHP」を含む記事のみ10件表示されるようになります。
関連記事