栏目列表页的实现方法
打开/include/arc.listview.class.php文件
找到
//处理一些特殊字段
在它上面加入
if ($GLOBALS['autoindex'] == 1)
{
$GLOBALS['description'] = $row['description'];
}
TAG列表页的实现方法
打开/include/arc.taglist.class.php文件
找到
//处理一些特殊字段
在它上面加入
if ($GLOBALS['autoindex'] == 1)
{
$GLOBALS['description'] = $row['description'];
}
上面2个PHP文件加的代码都是一样的,description 是第一个文档的摘要,如果要调用其他字段,你可以自己上
例如 标题的 title ,关键词的 keywords ,等等...
if ($GLOBALS['autoindex'] == 1)
{
$GLOBALS['title'] = $row['title'];
$GLOBALS['keywords'] = $row['keywords'];
$GLOBALS['description'] = $row['description'];
}
前端调用
{dede:global.description function='html2text(@me)'/}