1つの記事が属する全てのカテゴリの全ての記事の抜粋
-
一つの記事を表示した時に、その記事に続いてその記事が属する全てのカテゴリの全ての記事の抜粋が表示されるようsingle.phpにコードを組んでいるのですがいまいち上手くいきません。
見た目はこうなる予定です。
———————————–
本文<h2>記事の所属するカテゴリー1</h2>
-抜粋1
-抜粋2
-抜粋3<h2>記事の所属するカテゴリー2</h2>
-抜粋4
-抜粋5
-抜粋6
-抜粋7
————————————一応組んでみたコードですが上手く機能しません。
<?php $categories = get_the_category();
foreach($categories as $category):
$related_posts = get_posts(‘numberposts=-1”category=’.$category->cat_ID.’&exclude=’.$post->ID);
if($related_posts): ?>
<h2><?php echo $category->cat_name; ?> カテゴリの他の記事h2>
<?php foreach($related_posts as $related_post): ?>
<div id=”entry<?php get_the_ID($related_post); ?>”>
<?php get_the_excerpt($related_post); ?>
</div>
<?php endforeach; ?>
<?php endif; endforeach; ?>どなたかこのコードを直せる方がよろしくお願いします。
- トピック「1つの記事が属する全てのカテゴリの全ての記事の抜粋」には新たに返信することはできません。