我一直在做的事情让我感到困惑,非常感谢您能提供的任何帮助。
以下代码是作业通知上要显示的元素。它目前有用户的头像、用户名、创建日期和评论。用户和管理员(同事)都可以使用注释。如果评论的用户名为Administrator,则在其旁边显示“-expert”。但是,如果注释的用户名不是管理员角色,则不会在其旁边显示任何内容。
<?php ?><div itemscope itemtype="https://schema.org/Comment">
<div class="gv-note-author-details" itemscope itemtype="https://schema.org/Person">
<div class="gv-note-avatar" itemprop="image">{avatar}</div>
<h6 class="gv-note-author" itemprop="name">{user_name} <?php if { echo "Echo expert title here";} else { "echo nothing"}}?></h6>
</div>
<span class="gv-note-added-on" itemprop="dateCreated" datetime="{date_created}">{added_on}</span>
<div class="gv-note-content" itemprop="comment">{value}</div>
我在网上看到的唯一引用此的内容是get\\u current\\u user,但我不希望它获取当前用户。我希望它可以简单地检查用户名是否为Administrator,然后echo“-expert”;else echo“无回声”;
注意{user\\u name}是用户的显示名称