Changeset 2858
- Timestamp:
- 09/08/05 21:18:28 (3 years ago)
- Files:
-
- trunk/wp-includes/template-functions-author.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/template-functions-author.php
r2637 r2858 3 3 function get_the_author($idmode = '') { 4 4 global $authordata; 5 return $authordata->display_name;5 return apply_filters('the_author', $authordata->display_name); 6 6 } 7 7
