您好我正在尝试显示某个类别下的所有帖子。看起来像这样
游戏
战争机器
(游戏下的所有帖子都在这里)
几何战争
(几何战争下的所有帖子都在这里)
这就是我在制作文章时对word中的帖子进行分类的方式,所以他们不会混淆。但是当我尝试渲染它们时它们仍然会这样做。 G下的所有帖子都显示在每个游戏标题下(战争的齿轮,几何战争)我只想要在战争中有任何帖子的帖子,它们应该在战争的齿轮下显示。不是在几何战争之下。
这是我的代码:
<?php
$cat_id = get_query_var('cat');
$catlist = get_categories('hide_empty=0&child_of=' . $cat_id);
$cat_child = get_field('frontend_name' , 'category_' . get_query_var('cat' ));
foreach($catlist as $categories_item) {
echo "<ol>";
echo '<h3><a href="' . get_category_link( $categories_item->term_id ) . '" ' . '>' . $categories_item->description .'</a> </h3> ';
query_posts("cat=$cat_id&post_per_page=9999");
if (have_posts()) : while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink();?>">
<?php the_title(); ?>
</a></li>
<?php endwhile; endif; ?>
<?php echo "</ol>"; ?>
<?php } ?>
谢谢!
答案 0 :(得分:1)
更改
query_posts("cat=$cat_id&post_per_page=9999");
要
query_posts("cat=" . $categories_item->term_id . "&post_per_page=9999");