如何在修改日期而不是创建日期的Wordpress中列出我的帖子?
我有
<?php $posts=query_posts($query_string . '&orderby=post_modified&order=ASC'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
拥有orderby = title会按标题对帖子进行排序,但我的上述查询不起作用 看起来无法识别orderby = post_modified。
答案 0 :(得分:3)
好的......我明白了。
orderby = post_modified需要orderby = modified。
谢谢,
三通