如何让wordpress把所有文章分类单独在一个页面显示?
1、复制一个page.php文件改为page-abc.php,并在WordPress后台新建一个页面,固定链接地址改为abc(这个abc可随意,但必须跟page-abc相对应)。
2、在这个page-abc.php文件中找到以下代码:
<?php the_content(); ?>
相关推荐:《WordPress教程》
并在该代码后面添加以下代码:
<?php $cats = get_categories(); foreach ( $cats as $cat ) { query_posts( 'showposts=10&cat=' . $cat->cat_ID ); ?> <h3><?php echo $cat->cat_name; ?></h3> <ul class="sitemap-list"> <?php while ( have_posts() ) { the_post(); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php } wp_reset_query(); ?> </ul> <?php } ?>
记得保存更新page-abc.php文件。
到这里,我们刷新以下刚才新建的这个abc页面看看是否已经显示全部分类下的文章了?以上代码默认显示每个分类的10篇文章,如果需要显示所有文章,只需要把代码中的10改为1000或更大的数值即可。
以上是wordpress怎么把所有文章分类单独在一个页面显示的详细内容。更多信息请关注PHP中文网其他相关文章!