|
让后台的:内容--所有内容项目以日期来排序
|
|
|
|
Author: Autoit | Date:2006-08-22 | View: 12700 | Digg: 55 |
|
让后台的:内容--所有内容项目以日期来排序 他默认是先按单元来拍的,可能用的不习惯,虽然后台也有最新文章模块。但按时间来找起也是有点别扭,那么就来hack一下吧: /administrator/components/com_content/admin.content.php 149行左右: $order = "\n ORDER BY s.title, c.catid, cc.ordering, cc.title, c.ordering"; 改为: //$order = "\n ORDER BY s.title, c.catid, cc.ordering, cc.title, c.ordering";
$order = "\n ORDER BY c.created DESC"; 保存,覆盖即可。
Permanent URL: http://www.autoit.cn/index.php/content/view/74/25.html
|