<?php global $post; $categories = get_the_category(); //函数获取分类ID好 foreach ($categories as $category){ ?> <ul> <?php $posts = get_posts('numberposts=80&orderby=rand&category='. $category->term_id); //通过get_posts函数,根据分类ID来获取这个ID下的文章内容。 foreach($posts as $post){ ?> <li> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> //显示出该分类下的文章标题,以及附加上超链接。 </li> <?php } ?> </ul> <?php } ?>