Displaying avatar of a user

admin2025-06-05  3

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;  
?>
Share Improve this question edited Dec 11, 2018 at 17:19 W__ asked Dec 11, 2018 at 17:12 W__W__ 91 silver badge3 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

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 );
    }
}
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749107387a316423.html

最新回复(0)