如何显示WordPress登录用户角色

藏色散人
发布: 2019-11-23 11:13:13
转载
2776 人浏览过

下面由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登录用户角色的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:zmingcx.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!