我们在做wordpress网站的时候常常需要调用用户头像
常用调用代码为:
<?phpechoget_avatar(get_the_author_email(),'60');?>
可以通过邮件调用avatar头像
如果有自定义头像的话我们可以用下面代码:
<?phpglobal$current_user;get_currentuserinfo();echoget_avatar($current_user->user_email,32);?>
我们在做wordpress网站的时候常常需要调用用户头像
常用调用代码为:
<?phpechoget_avatar(get_the_author_email(),'60');?>
可以通过邮件调用avatar头像
如果有自定义头像的话我们可以用下面代码:
<?phpglobal$current_user;get_currentuserinfo();echoget_avatar($current_user->user_email,32);?>