ECSHOP文章列表改为显示内容提要方法

2016-06-13 13:05 来源:www.chinab4c.com 作者:ecshop专家

可以提取详细内容的固定字符宽度 修改:includes\lib_article.php 找到 function get_cat_articles($cat_id, $page = 1, $size = 20) 函数 在   $sql = 'SELECT article_id, title,content, author, add_time, file_url, open_type' .            ' FROM ' .$GLOBALS['ecs']->table('article') .            " WHERE is_open = 1 AND " . $cat_str .            ' ORDER BY article_type DESC, article_id DESC';   增加 content 字段   在             $arr[$article_id]['add_time']    = date($GLOBALS['_CFG']['date_format'], $row['add_time']); 下面 增加         $arr[$article_id]['content']       = $row['content'];   article_cat.dwt 调用 例子 {$article.content|strip_tags|truncate:20:"..."} 显示前20字符 多余的 使用 ...代替