destoon实现VIP排名一直在前面排序的方法
author:一佰互联 2019-04-28   click:248

本文示例方法实现destoon的排序方式为:一天内VIP登陆后,在点更新之后,会排在其他没有更新的VIP和普通会员前面。

其具体的操作步骤如下:

打开moduleselladmin emplate 下setting.tpl.php文件
在大约71行找到:

<select onchange="if(this.value) Dd("order").value=this.value;">

并在其下行添加:

<option value="vip desc,editdate desc,edittime desc"<?php if($order == "vip desc,editdate desc,edittime desc") echo " selected";?>><?php echo VIP;?>级别,更新日期,更新时间</option>

即可实现该功能。