1

我希望我的高级会员在我的论坛上发帖时的发帖背景略有不同。

我知道我可以通过向标签添加组 ID 类来做到这一点。

最终,我希望它看起来像这样:

7 是我的高级会员的 ID 号。

我尝试了以下方法,但它不起作用:

<div class='post_block hentry clear clearfix <if test="isSolvedCss:|:$post['post']['_isMarkedAnswered']">solved</if> <if test="postQueued:|:$post['post']['_isHidden']">moderated</if> ***{$author['member_group_id']}***' id='post_id_{$post['post']['pid']}'>

4

1 回答 1

1

那是因为您正在尝试使用 $author,这在此上下文中并不存在。您要使用的是帖子的作者。

尝试这个:

{$post['author']['member_group_id']}

所以你的代码最终应该是这样的:

<div class='post_block hentry clear clearfix <if test="isSolvedCss:|:$post['post']['_isMarkedAnswered']">solved</if> <if test="postQueued:|:$post['post']['_isHidden']">moderated</if> {$post["author"]["member_group_id"]}' id='post_id_{$post["post"]["pid"]}'>

希望这对您有所帮助。

于 2014-11-24T12:26:43.340 回答