默认的Typecho排序方式是根据发布时间,以下方法为根据最后编辑时间排序文章
varWidgetArchive.php ,1387-1393
可以看到文章排序代码
/** 仅输出文章 */ $this->_countSql = clone $select; $select->order('table.contents.created', Typecho_Db::SORT_DESC) ->page($this->_currentPage, $this->parameter->pageSize); $this->query($select); }
将其中的table.contents.created改为table.contents.modified