有没有办法按类别或标签查询帖子?我想获得三个属于同一类别或共享相同标签的最新帖子。以下是我已经拥有的代码:
$posttags = get_the_tags();
$tags = '';
if ($posttags) {
foreach($posttags as $tag) {
$tags .= ','.$tag->name;
}
}
$taglist = substr($tags, 1);
$category = get_the_category();
$posts = query_posts('&tag='.$taglist.'&orderby=date&order=DESC&posts_per_page=3&cat='.$category[0]->term_id);
但这只会获取属于同一类别并共享相同标签的帖子。