从此处使用此代码:http://www.snilesh.com/resources/wordpress/wordpress-recent-posts-from-current-same-category/
<h3>Recently Post From Same Category</h3>
<ul>
<?php
global $post;
$category = get_the_category($post->ID);
$category = $category[0]->cat_ID;
$myposts = get_posts(array('numberposts' => 5, 'offset' => 0,
'category__in' => array($category), 'post__not_in' =>
array($post->ID),'post_status'=>'publish'));
foreach($myposts as $post) :
setup_postdata($post);
?>
<li>
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?></a>
</li>
<?php endforeach; ?>
<?php wp_reset_query(); ?>
</ul>
我可以显示当前类别中的所有帖子。我要显示的是当前类别和类别186中的所有帖子。
答案 0 :(得分:0)
如果要显示当前类别和类别186中的帖子,请改用category__and
:
$myposts = get_posts(array(
'numberposts' => 5,
'offset' => 0,
'category__and' => array($category, 186),
'post__not_in' => array($post->ID),
'post_status'=>'publish'
));
有关更多详细信息:WP_Query - Category Parameters。
P.S .: get_posts()在内部使用WP_Query类来获取帖子,因此其参数相同。