wordpress下的默认排序是按照发布时间排序,但有时候,如果按修改时间排序来的比较合理,特别是有一些资料代码需要更改修正的时候。
wordpress的排序方式
orderby=date 按发布日期排序
orderby=modified 按修改时间排序
orderby=ID 按文章ID排序
orderby=comment_count 按评论最多排序
orderby=title 按标题排序
orderby=rand 随机排序
用法
<?PHP while ( have_posts() ) : the_post(); ?>
$args = array( 'showposts' => 10, 'orderby' => modified, ); query_posts($args);原文链接:https://www.f2er.com/wordpress/524090.html