category:
Technology
Back to Blog Index
WordPressで関連記事をランダムに表示する方法
WordPressで関連記事をランダムに表示するには、 以下のように書きます。 <?php $currentId = $post->ID; $cat = get_the_category(); $cat = $cat[0]->cat_ID; $rand_posts = get_posts(‘numberposts=5&category=’.$cat.’&orderby=rand&exclude=’.$currentId); if($rand_posts): ?> <ul> <?php foreach($rand_posts as $post): ?> <li><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></li> <?php endforeach; endif; ?> </ul>