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

时间:2024年02月05日

/

来源:网络

/

编辑:佚名

内容摘要指的是文章内容的前 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}
猜你需要

豫ICP备2021026617号-1  豫公网安备:41172602000185   Copyright © 2021-2028 www.78moban.com/ All Rights Reserved

本站作品均来自互联网,转载目的在于传递更多信息,并不代表本站赞同其观点和对其真实性负责。如有侵犯您的版权,请联系 1565229909#qq.com(把#改成@),我们将立即处理。