Wordpress动态添加管理员或作者类到评论
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress动态添加管理员或作者类到评论相关的知识,希望对你有一定的参考价值。
Can now use the class as a styler
<li class="<?php $comment_author_ID = get_comment(get_comment_ID()) -> user_id; $auth_ID = get_the_author_meta('ID'); echo ($comment_author_ID == $auth_ID) ? " author " : "" ; echo (is_super_admin($comment_author_ID)) ? " admin " : '' ; ?>">
以上是关于Wordpress动态添加管理员或作者类到评论的主要内容,如果未能解决你的问题,请参考以下文章