使用WP_Query,使用orderby参数设置为分类名称(title),然后运行主循环。
示例代码:
$args = array( 'post_type' => 'post', 'orderby' => 'title', 'order' => 'ASC' );
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) { while ( $the_query->have_posts() ) { $the_query->the_post(); // 输出帖子内容 } } else { // 如果没有找到帖子 }
wp_reset_postdata();
上一篇:按分类名称显示帖子
下一篇:按分类显示内容的代码示例解决方法