FWQ
dede专题节点文章怎么按id类型排序
dede专题节点文章怎么按id类型排序? dede专题节点文章按id,点击等类型排序 使用dedecms弄一个专题,添加内容发现内容标题不是按照添加的id排序的,也不是按照id顺序排列的。感觉像是随机的 推荐学习: 按照 标题的id 降序排列。 这个效果需要修改2 个php文件。 第一步骤: 1. 修改 includetaglibchannelspecialtopic.lib.php 文件 2. 在第52行 处 有这行代码: $ctag->GetAtt('imgwidth'), $ctag->GetAtt('imgheight'), 'all', 'default', $keywords, $listTemplet, 0, $idlist, 登录后复制 修改成: $ctag->GetAtt('imgwidth'), $ctag->GetAtt('imgheight'), 'all', 'asc', $keywords, $listTemplet, 0, $idlist, 登录后复制 3. 保存文件结束 第二步骤: 1.修改includetaglibarclist.lib.php 2.…