mirror of
git://develop.git.wordpress.org/
synced 2025-01-18 05:18:42 +01:00
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:
parent
d4ba9cd960
commit
c12f7caf57
@ -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…
x
Reference in New Issue
Block a user