欢迎来到元素模板ys720.com,本站提供专业的织梦模板PBOOTCMS模板网站模板网站修改/网站仿站
当前位置:主页 > 程序教程 > DEDECMS教程 >
DEDECMS教程

织梦tag列表页排序没用,修改代码按时间最新排序的方法

(元素模板) / 2020-06-21 16:38
元素模板站长 在处理 织梦tag 标签列表页的时候  发现, 在tag 到第二页的时候 就会发生 排序错误,新发布的会在最后一页

下面给大家解决方法:

找到include目录下的arc.taglist.class.php文件中的代码:

$this->dsql->SetQuery("Select aid From dede_taglist where tid = '{$this->TagInfos['id']}' And arcrank>-1 limit $limitstart,$getrow");

改成以下内容:

$sql = "Select arc.pubdate,tl.aid From dede_archives arc " .
"JOIN #@_taglist tl ON arc.id = tl.aid " .
"where tl.tid = '{$this->TagInfos['id']}' And tl.arcrank>-1 " .
"ORDER BY arc.pubdate DESC limit $limitstart,$getrow";
//var_dump($sql);
$this->dsql->SetQuery($sql);

Copyright @ 2013-2021 元素模板 www.ys720.com All Rights Reserved. 版权所有 元素模板 www.ys720.com