我有一个问题,我在 wordpress 中按标题升序显示帖子,但我想要的是显示帖子组的第一个字母,我的意思是
A: Annanas
Apple
Almond
B: Banana
G: Grape
我不知道如何在标准循环中实现这样的东西
<?php query_posts( array ( 'category_name' => 'publishers', 'orderby' => 'title', 'order' => 'ASC' ) ); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<li>
<?php the_title(); ?>
</li>
<?php endwhile; endif; wp_reset_query(); ?>
如果有人可以帮助我,我会很高兴...</p>
保重,有一个美好的一天!