Changeset 49979 for trunk/src/wp-admin/includes/media.php
- Timestamp:
- 01/18/2021 12:53:30 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/media.php
r49927 r49979 3289 3289 $att_url = wp_get_attachment_url( $attachment_id ); 3290 3290 3291 $author = get_userdata( $post->post_author );3291 $author = new WP_User( $post->post_author ); 3292 3292 3293 3293 $uploaded_by_name = __( '(no author)' ); 3294 3294 $uploaded_by_link = ''; 3295 3295 3296 if ( $author->exists() ) { 3296 3297 $uploaded_by_name = $author->display_name ? $author->display_name : $author->nickname;
Note: See TracChangeset
for help on using the changeset viewer.