2013
20
Nov
記事に同じカテゴリの一覧を表示する
記事ページの最後部分に、同じカテゴリの一覧を表示しようと思いました。
ページビュー数を増やすためには、あったほうがいいです!
single.php
<?php $num = "5";//取得件数 $cat_list = get_the_category();//現在のカテゴリ $now_url = get_permalink();// 現在のURL foreach ($cat_list AS $cat_now): $posts = get_posts('numberposts='.$num.'&category='.$cat_now->cat_ID); if(sizeof($posts) > 1): ?> <ul class="cate_list"> <?php foreach($posts as $post): setup_postdata($post); if (get_permalink() == $now_url){ continue; } // 表示中の記事はスキップ ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> </ul> <?php endif; endforeach; ?>
これで、同じカテゴリ一覧が表示できました。
- Contact Form 7 Datepicker バージョンアップで動かない場合
- All in One SEOが正しいtitleタグを書き出してくれない
- PHP Fatal error: Unknown: Cannot use output buffering in output buffering display handlers in Unknown on line 0.のエラーが出た場合
- カゴヤのサーバーで、wordpressのメディアライブラリが登録できない!
- さくらのレンタルサーバで、WordPressをSSL化するとセッション切れが発生