WP_Comments_List_Table::floated_admin_avatar( string $name, int $comment_id ): string

Adds avatars to comment author names.


Parameters

$name string Required
Comment author name.
$comment_id int Required
Comment ID.

Top ↑

Return

string Avatar with the user name.


Top ↑

Source

File: wp-admin/includes/class-wp-comments-list-table.php. View all references

public function floated_admin_avatar( $name, $comment_id ) {
	$comment = get_comment( $comment_id );
	$avatar  = get_avatar( $comment, 32, 'mystery' );
	return "$avatar $name";
}


Top ↑

Changelog

Changelog
Version Description
3.1.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.