在WordPress网站的新模板中打印类别名称序列及其后续帖子的语法是什么?我通过谷歌尝试了很多,但都没有正常工作。
答案 0 :(得分:1)
有很多方法可以做到这一点,但这里有一个简单的方法(你必须至少使用类别和帖子链接来改进它):
<?php $categories= get_categories();
if( !empty($categories) ):
?>
<ul>
<?php foreach ($categories as $category): ?>
<li>
<?=$category->cat_name?>
<?php $posts = get_posts($category->cat_id);
if( !empty($posts) ):
?>
<ul>
<?php foreach( $posts as $post ): ?>
<li><?= $post->post_title; ?></li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>