DEDECMS在列表页里直接显示文章全部内容的标签要怎么改?

2025-04-16 21:07:50
推荐回答(1个)
回答1:

修改inlcude下的arc.listview.class.php文件
搜索
if($row = $this->dsql->GetArray("al"))
在下面的大括号内添加几行代码
$query = "Select body From `#@__addonarticle`where aid =$row[id] ";
$this->dsql->SetQuery($query);
$this->dsql->Execute();
$temp=$this->dsql->GetArray());
$row['body']=$temp['body'];

然后在直接使用[field:body/]即可
可能不同版本的代码不太一样.你先试试吧