简体   繁体   English

Wordpress:更改站点范围的类别顺序?

[英]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.然后,您只需修改此 orderby= 和 order= 即可在不同字段之间更改以及是否按升序或降序排序。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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