Have get_function return unadulterated data

git-svn-id: https://develop.svn.wordpress.org/trunk@1996 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2004-12-23 21:52:09 +00:00
parent d4ba9cd960
commit c12f7caf57
1 changed files with 4 additions and 2 deletions

View File

@ -64,10 +64,12 @@ function the_author_ID() {
}
function get_the_author_email() {
global $id,$authordata; return antispambot($authordata->user_email);
global $authordata;
return $authordata->user_email;
}
function the_author_email() {
echo get_the_author_email();
echo apply_filters('the_author_email', get_the_author_email() );
}
function get_the_author_url() {