帖子列表类别插件按字母顺序排列

时间:2015-01-22 作者:Ryan

有没有办法将这些设置为按字母顺序列出类别中的帖子?

2 个回复
SO网友:Alexey

是的,有。将此粘贴到function.php

add_action(\'pre_get_posts\',\'wpse_175699_alphabetical_order\');

function wpse_175699_alphabetical_order($query) {

  if (is_category()) {
    $query->set(\'orderby\', \'title\');
    $query->set(\'order\', \'ASC\');
  }

}

SO网友:Monkey Puzzle

如果您正在谈论通用Wordpress编码,请看这里:http://codex.wordpress.org/Alphabetizing_Posts

查找“order”=>“ASC”,它将按升序值(例如A-Z)排列帖子

如果您正在谈论使用或修改插件,请查看插件的说明。例如,插件List Category Posts 有关于在中订购帖子的说明its notes here.

在该插件的情况下,您需要使用短代码:[catlist order=asc]

结束

相关推荐

Cannot order by in WP_Query

我陷入了这个问题:我有一个自定义查询,在其中我不能按任何东西排序。我想按特定的meta\\u值排序。但当按姓名、头衔、日期等排序时,我仍然不能。我做错了什么?<?php // Get the parent cat thanks to the page\'s cat slug $parent_cat = get_category_by_slug( $cat[1] ); $args = array( \'type\' =