カテゴリベースで関連記事を抽出する Ads X Bluesky Misskey はてブ 2012.05.10 Code <?php $related = get_posts( array( 'category__in' => wp_get_post_categories($post->ID), 'numberposts' => 5, 'post__not_in' => array($post->ID) ) ); if( $related ) foreach( $related as $post ) { setup_postdata($post); ?> <ul> <li> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a> </li> </ul> <?php } wp_reset_postdata(); ?> /*抜粋などを含めることも可能*/ Screen shot Note Description 同じカテゴリーを含む記事をマルチループを作成して表示する。 WordPress Ver. 3.3.1 Via How to show related posts by category