Answers:
最简单的方法是使用挂钩(pre_get_posts
挂钩)更改顺序。但是您应该检查查询是否确实要更改其顺序!(is_archive()
或 is_post_type_archive()
应该足够。)
例如,将以下内容放入主题的functions.php中。
add_action( 'pre_get_posts', 'my_change_sort_order');
function my_change_sort_order($query){
if(is_archive()):
//If you wanted it for the archive of a custom post type use: is_post_type_archive( $post_type )
//Set the order ASC or DESC
$query->set( 'order', 'ASC' );
//Set the orderby
$query->set( 'orderby', 'title' );
endif;
};
<?php
// we add this, to show all posts in our
// Glossary sorted alphabetically
if ( is_category('Glossary') ) {
$args = array(
'posts_per_page' => -1,
'orderby' => 'title',
'order' => 'ASC'
);
$glossaryposts = get_posts( $args );
}
foreach( $glossaryposts as $post ) : setup_postdata( $post );
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
对于斯蒂芬的答案,如果您只想按标题查询和排序,则可以在模板文件中使用它:
$args = ( array(
'order' => 'ASC',
'orderby' => 'title',
) );
query_posts($args);