您好,登錄后才能下訂單哦!
這篇文章主要介紹顯示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登錄用戶角色的方法的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。