Home  >  Article  >  php教程  >  ShopNC 后台品牌默认排序优化

ShopNC 后台品牌默认排序优化

PHP中文网
PHP中文网Original
2016-05-23 13:07:401019browse

ShopNC 默认下的排序是以品牌的 ID 来排序,这个其实没有太大意义,其实最好应该以,是否推荐,以及 brand_sort 设置来排序,才是比较科学的。
以下代码将修改其后台的排列顺序。

[PHP]代码    

#file: /admin/control/brand.php
#line: 60

$brand_list = $model_brand->table('brand')->where($condition)->order('brand_sort asc,brand_recommend desc')->page(20)->select();

                   

                   

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:mysql数据导出Excel文件格式Next article:php分页sql