突出显示管理员评论用户名
您好,我目前正在考虑突出显示我的评论,我找到了一个允许我添加背景颜色的教程。但我正在四处寻找如何在我的名字旁边获得作者标签或管理员标签。
示例:安东尼(作者)
Hi I'm currently looking into highlighting my comments, I found a tutorial that has allowed me to add a background color. But I'm looking around to see how I could get an Author tag or Admin tag next to my name.
Example: Antony (Author)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来获取作者姓名
您可以通过将the_author()
这段代码放在您想要显示作者的位置
。例如,
作者是
php the_author();
you can get the author name by putting,
the_author()
this code in the place where ever you want to display the author.
for example,
the auther is
php the_author();
只需检查评论用户 ID 和帖子作者 ID 是否相同并适当添加文本即可。
以下是如何为“二十一十一”主题做到这一点。
更改
为
您可以使用它作为基础并相应地编辑您的主题。
Just check if comment user id and post author id are same and add text appropriately.
Here is how you can do it for Twenty Eleven Theme.
Change
To
You can use this as base and edit your theme accordingly.