获取密码
1 | $this->author->password(); |
获取用户名
1 | $this->author->name(); |
获取用户昵称
1 | $this->author->screenName(); |
获取用户ID
1 | $this->author->uid(); |
获取用户头像
1 | $this->author->gravatar('120', '') |
<img src="http://cn.gravatar.com/avatar/<?php echo MD5($this->author->mail); ?>?s=120" alt="" class="" />
其中120代表方形图像的宽和高。获取头像,第一个傻瓜版,后面‘’中可以放入一个图片地址,当mail没有注册gravatar.com时采取改设置;第二个可以对img更多自定义比如自定义alt、class等。。。
获取用户全部文章列表链接
1 | $this->author->permalink(); |
获取用户个人网站链接
1 | $this->author->url(); |
获取用户邮箱
1 | $this->author->mail(); |
Relay Tips: 一极乐( https://yijile.com/log/354/ )