PHP头条
热点:

ShopNC后台品牌默认排序优化-PHP源码


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();

www.phpzy.comtrue/phpyy/49169.htmlTechArticleShopNC后台品牌默认排序优化-PHP源码 ShopNC 默认下的排序是以品牌的 ID 来排序,这个其实没有太大意义,其实最好应该以,是否推荐,以及 brand_sort 设置来排序,才是比较科学的。 以下...

相关文章

PHP之友评论

今天推荐