我有WordPress kanews主题。我想列出更新日期的帖子。但不幸的是我不能按创作日期排序。我该如何解决这个问题?
按更新日期发布的列表
发布于 2022-04-26 16:51:54
您需要一个自定义查询,并向orderby传递modified的值。THis将按其修改日期而不是发布日期对它们进行排序。
$args = [
'post_type' => 'post',
'orderby' => 'modified'
];
$modPosts = new WP_Query( $args );
if ( $modPosts->have_posts() ) : while ( $modPosts->have_posts() ) : $modPosts->the_post();
// Show posts here
endwhile; endif;
// Reset the query
wp_reset_query();https://stackoverflow.com/questions/71640838
复制相似问题