Ecshop模板网
首页 > ecshop教程 > ecshop安装使用 > 如何ecshop让文章按照倒序排列
文章详情

如何ecshop让文章按照倒序排列

ecshop模板网 / 2014-09-01

Ecshop添加新的文章不知道依照什么规则排序


主要修改 \includes\lib_goods.php 文件



function index_get_class_articles($cat_aid, $cat_num)
{
    $sql = "Select article_id, title,open_type,cat_id,file_url FROM " .$GLOBALS['ecs']->table('article'). " Where cat_id = ".$cat_aid." and is_open = 1 LIMIT  " . $cat_num;
    $res = $GLOBALS['db']->getAll($sql);
    $arr = array();
    foreach ($res AS $idx => $row)
 


修改为
 


function index_get_class_articles($cat_aid, $cat_num)
{
    $sql = "Select article_id, title,open_type,cat_id,file_url FROM " .$GLOBALS['ecs']->table('article'). " Where cat_id = ".$cat_aid." and is_open = 1 order by article_id desc LIMIT 0," . $cat_num;
    $res = $GLOBALS['db']->getAll($sql);
    $arr = array();
    foreach ($res AS $idx => $row)


即可

下一篇: ecshop商品详情页添加任意字段的方法 上一篇: 解决ecshop后台回复评论邮箱显示错误
 用户评论(共 0 条评论)
  • 暂时还没有任何用户评论
用户名: 匿名用户 E-mail:
当前心情:
评论内容:
验证码: captcha
返回顶部 返回首页
 
QQ在线咨询
售前电话热线
#
售前QQ客服