联系官方销售客服

1835022288

028-61286886

开发框架 版主:迅睿框架研发组
在评论列表中判断发布作者就显示发部者
类型:迅睿CMS 更新时间:2024-12-31 13:40:50 dr_member_info CodeIgniter

{php $user=dr_member_info($t.uid);}

{if $user.is_admin}

    <span class="label label-success" style="font-size: 12px">官方</span> {$t.author}

{elseif $user.author}

    <span class="label label-primary" style="font-size: 12px">发布者</span> {$t.author}

{else}

    <span class="label label-warning" style="font-size: 12px">网友</span> {$t.author}

{/if}


这是前台判断评论时的语句,在评论列表里,请问一下我要判断如果是这篇文章的作者评论的话就显示“发布者”,应该怎么写?

回帖
  • 外聘专员-明矾软件
    #1楼    外聘专员-明矾软件
    2024-12-31 13:16:50
    Chrome 0
    {if $index.uid==$t.uid}
  • 学习狂人
    #2楼    学习狂人
    2024-12-31 13:26:57
    Chrome 0
    外聘专员-明矾软件
    360截图20241231132554963
    我的代码如下:
    {php $user = dr_member_info($t.uid);}
    {if $user.is_admin}
        <span class="label label-success" style="font-size: 12px">官方</span> {$t.author}
    {elseif $index.uid==$t.uid}
        <span class="label label-primary" style="font-size: 12px">发布者</span> {$t.author}
    {else}
        <span class="label label-warning" style="font-size: 12px">网友</span> {$t.author}
    {/if}
  • 外聘专员-明矾软件
    #3楼    外聘专员-明矾软件
    2024-12-31 13:34:33
    Chrome 0
    {if $index.uid==$t.uid}
        <span class="label label-primary" style="font-size: 12px">发布者</span> {$t.author}
    {elseif $user.is_admin}
        <span class="label label-success" style="font-size: 12px">官方</span> {$t.author}
    {else}
        <span class="label label-warning" style="font-size: 12px">网友</span> {$t.author}
    {/if}
    满意答案
  • 学习狂人
    #4楼    学习狂人
    2024-12-31 13:40:31
    Chrome 0

    360截图20241231133947199
    完美解决
  • 学习狂人
    #5楼    学习狂人
    2024-12-31 13:40:50
    Chrome 0
    @外聘专员-明矾软件:结帖,完美解决