What code would i need so that i can display the avatar of the current user anywhere in wordpress. I need to know how for a avatar project on the bbpress forums im working on.
What code would i need so that i can display the avatar of the current user anywhere in wordpress. I need to know how for a avatar project on the bbpress forums im working on.
Hi,
Read this article:
http://codex.wordpress.org/Using_Gravatars
Or have a check with this plugin:
http://wordpress.org/extend/plugins/post-avatar/
Thanks,
Shane G.
Yeah i tried the links you gave me but none of them seem to have helped, thanks for trying though.
Try something like this:
<?php
global $current_user;
if(!empty($current_user->id) {
echo "<div class='avatar'>", get_avatar($current_user->id, 30), "</div>";
}
?>Thanks worked like a charm :P
This topic has been closed to new replies.