在WordPress开发过程中,我们可能需要获取当前登录的用户信息,例如当用户登录后我们在前台页面输入xx欢迎登录
1 2 3 4 5 6 | <!--?php global $current_user; get_currentuserinfo(); echo '用户名: ' . $current_user->user_login . "\n";<br ?--> 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"; ?> |
使用方法:先判断用户是否登录,然后放在.php的前台页面需要输出的位置,代码如下
1 2 3 4 5 6 7 8 9 | <div id="username"><a href="http://www.weipxiu.com/?page_id=96"><i class="iconfont"></i>登录</a> <a href="http://www.weipxiu.com/?page_id=91"><i class="iconfont"></i>注册</a> <a href="http://www.weipxiu.com/?page_id=91"> <!--?php if (is_user_logged_in()){ $current_user = wp_get_current_user(); echo '欢迎您, ' . $current_user->display_name;<br ?--> } ?> </a> <a style="display: none;" href="http://www.weipxiu.com/?page_id=102"><i class="iconfont"></i>会员中心 </a> </div> |
亲测成功,如有问题,可以给我留言!
支付宝扫一扫打赏
微信扫一扫打赏
共 0 条评论关于"如何获取WordPress当前用户信息-wp主题模板开发"
最新评论