アトリエロワ

今見ている投稿記事と同カテゴリーの記事を表示

<?php
$categories = get_the_category($post->ID);
$category_ID = array();

foreach($categories as $category):
	array_push( $category_ID, $category -> cat_ID);
endforeach ;

$args = array(
	'post__not_in' => array($post -> ID),
	'posts_per_page'=> 10,
	'category__in' => $category_ID,
	'orderby' => 'rand',
);
$query = new WP_Query($args);
if( $query -> have_posts() ):
	while ($query -> have_posts()) :
	$query -> the_post();
?>

<!--コンテンツが入るところ-->

<?php endwhile; endif; ?>
<?php wp_reset_postdata(); ?> 

HOME > wordpress設計術 > 今見ている投稿記事と同カテゴリーの記事を表示

wordpress設計術

wordpress設計術