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