根据IP.Board上的组ID更改帖子背景

时间:2014-10-26 18:57:43

标签: invision-power-board

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

我知道我可以通过向标记添加组ID类来实现此目的。

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

7是我的高级会员的身份证号码。

我尝试过以下操作但不起作用:

<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']}'>

1 个答案:

答案 0 :(得分: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"]}'>

希望这可以帮到你。