我需要一个功能,添加(Adm)/(Mod),如果当前用户是管理员/版主后,他们的用户名 时间:2013-04-30 作者:Villalobos 当版主/管理员留下评论时,我希望他们能脱颖而出,而不是像其他任何评论一样。到目前为止,我有这段代码,但我认为这不会有任何好处<?php $current_user_is_a_mod = current_user_can( \'edit_others_posts\' );if ( $current_user_is_a_mod ) echo \'(mod)\'; ?> 1 个回复 SO网友:fuxia 您可以请求角色current_user_can() 也是:current_user_can( \'administrator\' ) 或current_user_can( \'editor\' ) 没有内置角色moderator. 结束 文章导航