我有自定义帖子类型,它有很多类别。当我打开这个自定义帖子类型帖子的单个帖子,然后在这个自定义单个帖子的底部,我想从这个帖子类别中显示8个帖子标题,图片等。
答案 0 :(得分:0)
在主题的single.php中添加此代码。
$related = get_posts( array( 'category__in' => wp_get_post_categories($post->ID), 'numberposts' => 8, '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 »'); ?>
<?php the_post_thumbnail( 'thumbnail' ); ?>
</li>
</ul>
<?php }
wp_reset_postdata(); ?>