Typecho默认的文章展示(主页)顺序为创建时间,我们假设需要按照修改时间进行排序,那么就需要进行源码的修改,修改 table.contents.created
为table.contents.modified
,具体内容如下:
// File path: var/Widget/Archive.php
/**(Line 761) 仅输出文章 */
$this->countSql = clone $select;
// table.contents.created ==> table.contents.modified
$select->order('table.contents.modified', Db::SORT_DESC)
->page($this->currentPage, $this->parameter->pageSize);
$this->query($select);