码迷,mamicode.com
首页 > 其他好文 > 详细

Ecshop文章列表页显示内容摘要

时间:2015-05-22 16:28:58      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

本教程中讲到的“内容摘要”指的是文章内容的前 60个字符(当然也可以是前40个,前50个等等)

下面以 2.7.2版 + 官方默认模板 为例进行讲解:

1)、修改 includes/lib_article.php  文件
搜索

$sql = ‘SELECT article_id, title, author, add_time, file_url, open_type‘ .


一共能搜到两处,每一处都改为

$sql = ‘SELECT article_id, title,content, author, add_time, file_url, open_type‘ .


继续找到

$arr[$article_id][‘title‘]       = $row[‘title‘];


在它下面增加一行代码

$arr[$article_id][‘content‘]       = strip_tags($row[‘content‘]);


2)、打开 模板文件 /themes/default/article_cat.dwt 
搜索找到

{$article.short_title}</a>


在它后边增加代码

<br>{$article.content|truncate:60}

Ecshop文章列表页显示内容摘要

标签:

原文地址:http://www.cnblogs.com/wangblognet/p/4522534.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!