我使用以下代码显示相关帖子,但它只显示该类别的帖子,就像品牌只显示品牌帖子一样。我要找的是,如果我在child下选择任何帖子(品牌、广告、在线等),它应该显示营销下的所有帖子,这样我就不必为帖子分配多个类别
主题营销(3)品牌(1)广告(1)在线(1)
<?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>
<?php the_content(\'Read the rest of this entry »\'); ?>
</li>
</ul>
<?php } wp_reset_postdata(); ?>