您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程

ecshop增加调用字段的方法实例

怜菡2025-02-10 21:11:44ecshop商城教程已有3人查阅

导读一、ecshop文章列表页调用缩略图、网页描述等打开includes/lib_article.php文件,大约在69行
添加如果需要调用描述,需要在sql语句添加description

一、ecshop文章列表页调用缩略图、网页描述等
打开includes/lib_article.php文件,大约在69行
添加
$arr[$article_id]['description'] = $row['description'];
$arr[$article_id]['file_url'] = $row['file_url'];
如果需要调用描述,需要在sql语句添加description
大约在53行
替换成下面的sql语句
$sql = 'SELECT article_id, title, author, add_time, file_url, description, open_type' .
' FROM ' .$GLOBALS['ecs']->table('article') .
' WHERE is_open = 1 AND ' . $cat_str .
' ORDER BY article_type DESC, article_id DESC';
二、文章列表页调用该分类的名称
1.打开根目录的article_cat.php的文件,在大概80行左右,找到
$meta = $db->getRow("SELECT keywords, cat_desc FROM " . $ecs->table('article_cat') . " WHERE cat_id = '$cat_id'");
在其中加入一个字段,改为:
$meta = $db->getRow("SELECT keywords,cat_name, cat_desc FROM " . $ecs->table('article_cat') . " WHERE cat_id = '$cat_id'");
2.然后在
$smarty->assign('description', htmlspecialchars($meta['cat_desc']));
的下面加入
$smarty->assign('cat_name', htmlspecialchars($meta['cat_name']));
3.在模板页面调用文章分类
格式:{$cat_name}----就是(文章分类名)

本文标签:

很赞哦! (0)

暂无内容
暂无内容
暂无内容
暂无内容
留言与评论 (共有 0 条评论)
昵称:
匿名发表 登录账号
         
验证码: