$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>Displaying avatar of a user|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

Displaying avatar of a user

matteradmin9PV0评论

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 );
    }
}

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far