WordPress記事と同じカテゴリの関連記事を表示させる
2015/11/21
single.phpの記事表示位置
の下あたりに以下のコードを追加します。
HTMLは適宜変更してください。
<h4><?php $cat = get_the_category(); $cat = $cat[0]; { echo $cat->cat_name; } ?>関連記事</h4>
<?php
foreach((get_the_category()) as $cat) {
$cat_id = $cat->cat_ID ;
break ;
}$query = 'cat=' . $cat_id. '&showposts=5';
query_posts($query) ;
?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<ul>
<li>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
</ul>
<?php endwhile; endif; ?>
<?php wp_reset_query(); ?>
showposts=5が表示したい記事数になります。