dede 织梦 后台列表读取某字段,读取后台字段,列表字段
The dede Pursuing a dream list of background reading a field, read the background field, list field
后台列表读取某字段 先从 content_list.php 中找到那字段并且添加上 如 208行
$query = "SELECT arc.id,arc.typeid,arc.senddate,arc.flag,arc.ismake,
arc.channel,arc.arcrank,arc.click,arc.title,arc.color,arc.litpic,arc.pubdate,arc.weight,arc.mid
FROM `$maintable` arc
$whereSql
ORDER BY $orderbyField DESC";
这段语句中加入字段名称, 在content_list.htm 中才能调用
按权重排序 把content_list.php的205行 $orderby = empty($orderby) ? 'id' : preg_replace("#[^a-z0-9]#", "", $orderby);
中的id 改成weight 就可以了