以下由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 '用户名: ' . $current_user->user_login . "\n"; echo '用户邮箱: ' . $current_user->user_email . "\n"; echo '名字: ' . $current_user->user_firstname . "\n"; echo '姓氏: ' . $current_user->user_lastname . "\n"; echo '公开显示名: ' . $current_user->display_name . "\n"; echo '用户 ID:' . $current_user->ID . "\n"; ?>
WordPress使用者資訊呼叫基本上算是全了。應該還差顯示用戶文章和評論數量,下次再寫。
以上是如何顯示WordPress登入使用者角色的詳細內容。更多資訊請關注PHP中文網其他相關文章!