本教程中講到的「內容摘要」指的是文章內容的前 60個字符(固然也能夠是前40個,前50個等等)
下面以 2.7.2版 + 官方默認模板 爲例進行講解:
1)、修改 includes/lib_article.php 文件
搜索php
$sql = 'SELECT article_id, title, author, add_time, file_url, open_type' . |
一共能搜到兩處,每一處都改成sql
$sql = 'SELECT article_id, title,content, author, add_time, file_url, open_type' . |
繼續找到url
$arr[$article_id]['title'] = $row['title']; |
在它下面增長一行代碼spa
$arr[$article_id]['content'] = strip_tags($row['content']); |
2)、打開 模板文件 /themes/default/article_cat.dwt
搜索找到教程
{$article.short_title}</a> |
在它後邊增長代碼ip
<br>{$article.content|truncate:60} |