如何显示WordPress登录用户角色

redmaomail 2024-07-24 23:02 阅读数 68 #wordpress

红帽云邮外贸主机

下面由wordpress/" target="_blank">wordpress入门教程栏目给大家分享一段wordpress显示登录用户角色的代码。

如何显示WordPress登录用户角色

将下面的代码添加到当前主题functions.php中:

function get_user_role() {
    global $current_user;
    $user_roles = $current_user->roles;
    $user_role = array_shift($user_roles);
    return $user_role;
}
登录后复制

在主题模板适当位置添加调用代码:

<?php echo get_user_role(); ?>
登录后复制

再配合以下的WordPress用户信息函数:

<?php
global $current_user;
get_currentuserinfo();
echo &#39;用户名: &#39; . $current_user->user_login . "\n";
echo &#39;用户邮箱: &#39; . $current_user->user_email . "\n";
echo &#39;名字: &#39; . $current_user->user_firstname . "\n";
echo &#39;姓氏: &#39; . $current_user->user_lastname . "\n";
echo &#39;公开显示名: &#39; . $current_user->display_name . "\n";
echo &#39;用户 ID:&#39; . $current_user->ID . "\n";
?>
登录后复制

WordPress用户信息调用基本算是全了。应该还差显示用户文章和评论数量,下次再写。

以上就是如何显示WordPress登录用户角色的详细内容,更多请关注红帽云邮其它相关文章!


红帽云邮外贸主机

分享到:
版权声明:本站内容源自互联网,如有内容侵犯了你的权益,请联系删除相关内容。
    红帽云邮外贸主机
热门
    红帽云邮外贸主机
    红帽云邮外贸主机