按标题和编号对类别列表中的帖子进行排序{wordpress}

时间:2017-01-29 21:09:55

标签: wordpress title numeric posts alphabetical-sort

所以我试图按标题列出特定类别的帖子,但是当我这样做时,代码会返回:

  • Post 2
  • Post 11
  • Post 10
  • Post 1

我已经尝试过在网上找到的所有内容,但没有运气。 :\

实际上我正在使用旧的检索帖子

global $query_string;
query_posts( $query_string . '&posts_per_page=1000&order=DESC&orderby=title' );

预期结果是:

  • Post 11
  • Post 10
  • Post 2
  • Post 1

提前致谢!

0 个答案:

没有答案