我有一个简单的循环,但它以任意顺序返回。我要找的是按字母顺序排列循环。我尝试了一些不同的方法,但似乎无法奏效。
<?php
// Start the loop.
while ( have_posts() ) : the_post();
// Include the page content template.
get_template_part( \'content\', \'grid-projects\' );
// End the loop.
endwhile;
?>