我想通过类别页面上帖子旁边的标签显示相关帖子。我能找到的所有相关帖子代码都将在嵌套循环中使用,single.php
但我需要它在类别页面的循环中。
因此,当您转到“猫”类别时,它应该输出以下内容:“帖子 1 标题”,“猫”类别,标签“小猫”“相关帖子 1.1 标题”,标签“小猫”“相关帖子 1.2 标题”,标签“小猫”
“帖子 2 标题”,类别“猫”,标签“tomcats” “相关帖子 2.1 标题”,标签“tomcats” “相关帖子 2.2 标题”,标签“tomcats”
...
这是我想出的代码,但它坏了。
`// 第一个查询 $my_query = new WP_Query('cat=6');
// If first query have posts
if( $my_query->have_posts() ) :
// While first query have posts
while ($my_query->have_posts()) : $my_query->the_post();
?>
<!-- start post -->
<!-- End post div -->
<?php
// tags
$tag_ids = array();
foreach($tags as $individual_tag) $tag_ids[] = $individual_tag->term_id;
$args=array(
'tag__in' => $tag_ids,
'post__not_in' => array($post->ID),
'posts_per_page'=>99,
'caller_get_posts'=>1
);
// Second query
$my_second_query = new WP_Query('$args');
// If second query have posts
if( $my_second_query->have_posts() ) :
?>
<?php
// While second query have posts
while( $my_second_query->have_posts() ) : $my_second_query->the_post();
?>
<!-- start post -->
<!-- End post div -->
<?php
// End second while have posts
endwhile;
?>
<?php
// End first while have posts
endwhile;
// End if first query have posts
endif;
?>`
这甚至可能吗?我一辈子都找不到例子。提前谢谢了