I would like to display the avatar of a user.
.jpg I want to do custom styling, such as the circled avatar.
I have read there is code, and I am assuming this is the one I am wanting to use, I am not exactly sure where the code is supposed to go.
<?php
global $current_user;
if ( is_user_logged_in() ):
get_currentuserinfo();
echo get_avatar( $current_user->ID, 64 );
endif;
?>
I would like to display the avatar of a user.
https://i.sstatic/99nOA.jpg I want to do custom styling, such as the circled avatar.
I have read there is code, and I am assuming this is the one I am wanting to use, I am not exactly sure where the code is supposed to go.
<?php
global $current_user;
if ( is_user_logged_in() ):
get_currentuserinfo();
echo get_avatar( $current_user->ID, 64 );
endif;
?>
Hey pass the current user email id in get_avatar() function if user is logged in like this.
<?php
if ( is_user_logged_in() ) {
$current_user = wp_get_current_user();
if ( ($current_user instanceof WP_User) ) {
echo get_avatar( $current_user->ID, 32 );
}
}