注册 | 登录 |
地方论坛门户及新闻和人才网址大全

discuz! 调用楼主所在会员组名代码

时间:2021-07-21人气:-


调用会员组代码$post[authortitle],默认只在viewthread_node.htm中生效,单独使用在viewthread_node.htm中调用的是最后回帖作者所在用户组名。
如要在viewthread.htm中调用楼主所在用户组,需要写成
<!--{loop $postlist $post}--><!--{if $post['first']}-->$post[authortitle]<!--{/if}--><!--{/loop}-->

调用楼主头像:
<!--{avatar($_G[forum_thread][authorid],small)}-->
复制代码
调用楼主主题数:
<!--{eval $louzhuid = $_G[forum_thread][authorid]; $zhutishu = DB::result(DB::query("SELECT threads FROM ".DB::table('common_member_count')." WHERE uid = '$louzhuid'"));}-->$zhutishu
复制代码
调用楼主积分:
<!--{eval $louzhuid = $_G[forum_thread][authorid]; $jifenshu = DB::result(DB::query("SELECT credits FROM ".DB::table('common_member')." WHERE uid = '$louzhuid'"));}-->$jifenshu

上篇:discuz 首页调用门户文章带分页

下篇:Discuz! 帖子外链自动添加nofollow的方法