Changeset 12284 for trunk/wp-includes/author-template.php
- Timestamp:
- 11/26/2009 11:29:54 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/author-template.php
r12012 r12284 23 23 function get_the_author($deprecated = '') { 24 24 global $authordata; 25 return apply_filters('the_author', $authordata->display_name);25 return apply_filters('the_author', is_object($authordata) ? $authordata->display_name : null); 26 26 } 27 27
Note: See TracChangeset
for help on using the changeset viewer.