WordPress下的默认排序是按照发布时间排序,但有时候,如果按修改时间排序来的比较合理,特别是有一些资料代码需要更改修正的时候。
下面,就说说已首页最新文章列表为例,修改成按修改时间排序。
[quote]wordpress的排序方式[/quote]
- orderby=date 按发布日期排序
- orderby=modified 按修改时间排序
- orderby=ID 按文章ID排序
- orderby=comment_count 按评论最多排序
- orderby=title 按标题排序
- orderby=rand 随机排序
[quote]用法[/quote]
1、在首页的PHP文件中搜索
<?php while ( have_posts() ) : the_post(); ?>
2、在while
前面加上下面这段代码
$args = array( 'showposts' => 10, 'orderby' => modified, ); query_posts($args);
然后保存,即可完成最新文章按修改时间排序。
Google搜索进来的,谢谢分享。
改完后,下面的分页错误了。一直在第一页,跳不到后面去。什么情况哦!
好文章!666,学习了
mark,简单的教程作用大大