typecho 文章 倒序
Typecho博客修改文章倒序排列
修改前台文章
定位文件 /var/Widget/Archive.php
$select->order('table.contents.created', Typecho_Db::SORT_DESC)
修改为
$select->order('table.contents.created', Typecho_Db::SORT_ASC)
修改后台文章列表
定位文件:typecho/var/Widget/Contents/Attachment/Admin.php
找到
$select->order('table.contents.created', Typecho_Db::SORT_DESC)
修改为
$select->order('table.contents.created', Typecho_Db::SORT_ASC)
Referenced from:https://caiqi.run/mark/33.html
本文链接地址:https://const.net.cn/193.html