可以提取详细内容的固定字符宽度
修改: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字符 多余的 使用 ...代替
此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!: