DedeCMS列表页不支持
网站中无论是图片还是文章,title是不能缺少的,所以修改列表页不支持[dede:fulltitle]的方法:
打开/include/arc.specview.class.php文件
找到
$row["title"]=cn_substr($row["title"],$titlelen);
在这句代码的上面加上以下代码,使之成为:
$row["fulltitle"]=$row["title"];
$row["title"]=cn_substr($row["title"],$titlelen);
原文链接:http://www.jxszl.com/biancheng/dedecms/73295.html
最新推荐