dz热帖不显示的问题解决方法供大家参考
module/forum/forum_index.php
$hotdl = TIMESTAMP - 604800;
$grids['hot'] = C::t('forum_thread')->fetch_all_for_guide('hot', 0, array(), 0, $hotdl, 0, 10, $_G['setting']['grid']['fids']);//把原来的第四个参数3改成0
class/table/table_forum_thread.php
}
if($type == 'thread') {
$orderby = 'tid';
} elseif($type == 'reply') {
$orderby = 'lastpost';
$addsql .= ' AND replies > 0';
} elseif($type == 'hot') {
$orderby = 'heats,replies';
} else {
增加hot的排序,优先点击数(heats)还是回复数(replies)大家自己调。
顶上大家自己调。
页:
[1]