Forums
Home / Plugin: Social Share, Social Login and Social Comments Plugin - Super Socializer / Avatar
(@anmol24)
8 years, 4 months ago
Hi
How can I get Small Avatar Url and Large Avatar Url created by Super Socializer – Social Avatar on the User Page.
I tried
$author_info = get_userdata($authorID); $author_info->large_avatar_url;
but didn get the desired field.
Thanks
(@heateor)
Hi,
You can get small and large avatar urls using following usermeta queries, respectively: get_user_meta($userId, 'thechamp_avatar', true); get_user_meta($userId, 'thechamp_large_avatar', true);
get_user_meta($userId, 'thechamp_avatar', true);
get_user_meta($userId, 'thechamp_large_avatar', true);
You’re welcome