简体   繁体   中英

Wordpress: Change sitewide category order?

I'm trying to change the order in which my posts are displayed on my category pages.

Let me know if you know how it's done. Cheers

You can add the following code before the start of the 'loop' to change the ordering of your posts:

<?php
$posts = query_posts($query_string .  '&orderby=title&order=asc');
// here comes The Loop!
if (have_posts()) : while (have_posts()) : the_post(); ?>

This will modify the loop to order posts by the title in ascending order. You can then just modify this orderby= and order= to change between the different fields and whether to order in ascending or descending order.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM