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:
parent
0b79658085
commit
b73a9d7e8c
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue