Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator t-p

    (@t-p)

    Thread Starter Arteaster

    (@arteaster)

    @t-p

    Thanks
    for plugins but client already have bunch of other plugins, so he needs just some PHP Snippet

    Maybe some new PHP code, it doesn’t have to be based on above code.

    Thread Starter Arteaster

    (@arteaster)

    I found this code, but Avatar and name are not linked. They are not linked to author page and number of posts are missing.
    Also solution, It’s not necessary for Avatar to be linked, but author name and instead Avatar custom image.

    <?php
    $blogusers = get_users();
    // Array of WP_User objects.
    foreach ( $blogusers as $user ) {
        /* Here passing user email and avater size */
        echo get_avatar( $user->user_email , 96 );
        echo '<span>' . esc_html( $user->display_name ) . '</span>';
    }
     ?>

    Thanks.

    • This reply was modified 2 years, 1 month ago by Arteaster.
    • This reply was modified 2 years, 1 month ago by Arteaster.
    • This reply was modified 2 years, 1 month ago by Arteaster.
    • This reply was modified 2 years, 1 month ago by Arteaster.
    • This reply was modified 2 years, 1 month ago by Arteaster.
    • This reply was modified 2 years, 1 month ago by Arteaster.
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to add avatar to authors list ?’ is closed to new replies.