Changeset 1996
- Timestamp:
- 12/23/04 21:52:09 (4 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
r1962 r1996 65 65 66 66 function get_the_author_email() { 67 global $id,$authordata; return antispambot($authordata->user_email); 68 } 67 global $authordata; 68 return $authordata->user_email; 69 } 70 69 71 function the_author_email() { 70 echo get_the_author_email();72 echo apply_filters('the_author_email', get_the_author_email() ); 71 73 } 72 74
