diff --git a/src/wp-includes/link-template.php b/src/wp-includes/link-template.php index 3a4627d56a..a0584efbea 100644 --- a/src/wp-includes/link-template.php +++ b/src/wp-includes/link-template.php @@ -3438,7 +3438,7 @@ function get_avatar_url( $id_or_email, $args = null ) { * Default null. * @type array $processed_args When the function returns, the value will be the processed/sanitized $args * plus a "found_avatar" guess. Pass as a reference. Default null. - * @type string $extra_attr HTML attribute to insert in the IMG element. Has no default and is not sanitized. + * @type string $extra_attr HTML attributes to insert in the IMG element. Is not sanitized. Default empty. * } * * @return array $processed_args { diff --git a/src/wp-includes/pluggable.php b/src/wp-includes/pluggable.php index 71c0d3704b..2abf88404b 100644 --- a/src/wp-includes/pluggable.php +++ b/src/wp-includes/pluggable.php @@ -2149,7 +2149,7 @@ if ( !function_exists( 'get_avatar' ) ) : * Default null. * @type bool $force_display Whether to always show the avatar - ignores the show_avatars option. * Default false. - * @type string $extra_attr HTML attribute to insert in the IMG element. Has no default and is not sanitized. + * @type string $extra_attr HTML attributes to insert in the IMG element. Is not sanitized. Default empty. * } * * @return false|string `` tag for the user's avatar. False on failure.