DedeCMS专题内容页节点文章排序的修改方法
Posted fgghghhg
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DedeCMS专题内容页节点文章排序的修改方法相关的知识,希望对你有一定的参考价值。
在网站专题内容页中节点排序默认都是按照更新的时间顺序排列的,排序的方式是降序,在调用专题内容页的内容的时候调用的标签也是{dede:field.note/},想要修改调用的排序方法也是可以的。 织梦 dede 专题内容页节点排序的修改方法:
1、{dede:field.note} 其实是用 {dede:arclist}{/dede:arclist} 标签里的 lib_arclistDone 来解析的,所以 orderby 和 order 都是可以控制排序方法的,orderby 是文档排序方式,order 是降序还是升序。
2、打开 dede/spec_add.php 和 dede/spec_edit.php ,在这两个文件里均找到代码:
-
$notelist .= "{dede:specnote imgheight=‘$imgheight‘ imgwidth=‘$imgwidth‘
-
infolen=‘$infolen‘ titlelen=‘$titlelen‘ col=‘$col‘ idlist=‘$okids‘
-
name=‘$notename‘ noteid=‘$noteid‘ isauto=‘$isauto‘ rownum=‘$rownum‘
-
keywords=‘$keywords‘ typeid=‘$typeid‘}
2 个文件里边的这段内容都是相同的,在 typeid=‘$typeid‘ 后边加入:
-
order=‘asc‘
注意:order 前边有个空格。
3、打开 include/taglib/channel/specialtopic.lib.php ,找到代码:
-
$ctag->GetAtt(‘att‘)
在其后边加入:
-
,$ctag->GetAtt(‘order‘)
4、找到 specialtopic.lib.php 第 51 行中的 default 改为 id 即可。
修改完以上文件后,上传覆盖,再生成专题页,可以看到文章已经按 ID 升序排列了!