求助:如何设置文章列表显示内容提要

2016-07-07 16:07 来源: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字符 多余的 使用 ...代替

谢谢已经做好了

在2.7.1版本操作老是出错;

提示语法错误

这个需要用英文的,号

这句{$article.content|strip_tags|truncate:20:"..."},
如何{$article.content|strip_tags|strip:" "}|truncate:20:"..."},
请问如何用strip:" "去除$article.content多余的空格,我是用这句{$article.content|strip_tags|strip:" "|truncate:20:"..."} 来做文章描述的!请高手赐教!

我使用的是 concise 模板 2.7.2按照楼主的办法,怎么不能修改成功呢

可以提取详细内容的固定字符宽度
修改: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字符 多余的 使用 ...代替
这个可以得到!

我有2.72的,没有得到。

哦,有两处$sql = 'SELECT article_id, title, content, author, add_time, file_url, open_type' .
都需要增加。

QQ截图未命名.png 我两个都加了,也不行啊。