1)、修改 includes/lib_article.php 文件,将
$sql = 'SELECT article_id, title, author, add_time, file_url, open_type' .
修改为
$sql = 'SELECT article_id, title, author, add_time, file_url, open_type,description' .
(注意,一共有两处, 每一处都要修改)
继续向下,找到
$arr[$article_id]['title'] = $row['title'];
在它下面增加一行代码
$arr[$article_id]['description'] = $row['description'];
2)、修改 /themes/default/article_cat.dwt
在你想显示 “网页描述”信息的地方加入下面标签代码即可 {$article.description}