Media: Replace some array keys with their numeric equivalent.

This change replaces `['0']` with `[0]` which brings better consistency, readability and performance.

Props chintan1896, adamsilverstein, costdev.
Fixes #53540.


git-svn-id: https://develop.svn.wordpress.org/trunk@52245 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jb Audras
2021-11-25 08:34:01 +00:00
parent 53d604365e
commit 388b59319e
2 changed files with 7 additions and 7 deletions

View File

@@ -1129,7 +1129,7 @@ function wp_get_attachment_image( $attachment_id, $size = 'thumbnail', $icon = f
*/
function wp_get_attachment_image_url( $attachment_id, $size = 'thumbnail', $icon = false ) {
$image = wp_get_attachment_image_src( $attachment_id, $size, $icon );
return isset( $image['0'] ) ? $image['0'] : false;
return isset( $image[0] ) ? $image[0] : false;
}
/**