Have get_function return unadulterated data

git-svn-id: http://svn.automattic.com/wordpress/trunk@1996 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2004-12-23 21:52:09 +00:00
parent 0b79658085
commit b73a9d7e8c
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() {