yes, but it depend from where the avatar come from.
I suppose you are using the phpBB WordPress integration?
By the way if you want to display an avatar into a login widget, it isn't complicate as you just need to display avatar for the current user, so the code will look like this, just to be sure will work on any situation:
Code: Select all
$current_user = wp_get_current_user();
echo get_avatar( $current_user->ID, 32 );
Are you using the integration plugin?
'32' is the size in px of the avatar to display.
yes, but it depend from where the avatar come from.
I suppose you are using the phpBB WordPress integration?
By the way if you want to display an avatar into a login widget, it isn't complicate as you just need to display avatar for the current user, so the code will look like this, just to be sure will work on any situation:
[code]$current_user = wp_get_current_user();
echo get_avatar( $current_user->ID, 32 ); [/code]
Are you using the integration plugin?
'32' is the size in px of the avatar to display.