WordPress以分类形式显示文章列表 – WordPress 教程

2022年 10月 24日 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解

WordPress以分类形式显示文章列表 – WordPress 教程
WordPress

一段以分类形式显示WordPress文章列表代码,修改其中的数字10可以设定显示的篇数,可用于在单页面上显示全部分类文章。

<?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 } ?>

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: