我需要一个功能,添加(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.

结束

相关推荐

如何在Functions.php中使用PHP手动修复WordPress库代码?

Wordpress为内置的gallery功能输出了一些非常糟糕的代码,这已经被谈论了很多次了。这是负责库输出的核心代码(在/wp-includes/media.php中):function gallery_shortcode($attr) { global $post; static $instance = 0; $instance++; // Allow plugins/themes to override the de