当前位置:首页>记录>discuz 手机版首页默认热帖改为新帖

discuz 手机版首页默认热帖改为新帖

2017-04-19 2035 记录
查看触屏版的 forum 下的 discuz.htm 代码可得如下:
  1. <!--{if $_G['setting']['mobile']['mobilehotthread'] && $_GET['forumlist'] != 1}-->
  2. <!--{eval dheader('Location:forum.php?mod=guide&view=hot');exit;}-->
  3. <!--{/if}-->
很明显的 hot 表示热帖。 当热帖开启后,跳转到热帖中去,如果想要跳转到新帖中,把 hot 改为 newthread 即可,如下:
  1. <!--{if $_G['setting']['mobile']['mobilehotthread'] && $_GET['forumlist'] != 1}-->
  2. <!--{eval dheader('Location:forum.php?mod=guide&view=newthread');exit;}-->
  3. <!--{/if}-->
TIP:前提是,后台开启了手机版热帖查看。 完毕!

评论 (0)