Ticket #55420: author-template.patch
File author-template.patch, 497 bytes (added by , 3 years ago) |
---|
-
wp-includes/author-template.php
diff --git a/wp-includes/author-template.php b/wp-includes/author-template.php index 2911366f..bc113b64 100644
a b function get_the_modified_author() { 101 101 * 102 102 * @param string $display_name The author's display name. 103 103 */ 104 return apply_filters( 'the_modified_author', $last_user ->display_name);104 return apply_filters( 'the_modified_author', $last_user ? $last_user->display_name : '' ); 105 105 } 106 106 } 107 107