mirror of
https://github.com/WordPress/WordPress.git
synced 2025-04-03 10:35:47 +02:00
Allow comment object to be passed to get_avatar() for convenience. see #5775
git-svn-id: http://svn.automattic.com/wordpress/trunk@6946 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
3355f0c2af
commit
726b030412
@ -1195,7 +1195,7 @@ function get_avatar( $id_or_email, $size = '96', $default = '' ) {
|
||||
} elseif ( is_object($id_or_email) ) {
|
||||
if ( !empty($id_or_email->user_id) ) {
|
||||
$id = (int) $id_or_email->user_id;
|
||||
$user = get_userdata();
|
||||
$user = get_userdata($id);
|
||||
if ( $user)
|
||||
$email = $user->user_email;
|
||||
} elseif ( !empty($id_or_email->comment_author_email) ) {
|
||||
|
Loading…
Reference in New Issue
Block a user