Add the_author_aim() to deprecated. see #8776

git-svn-id: https://develop.svn.wordpress.org/trunk@11269 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2009-05-11 17:56:34 +00:00
parent 5fca0502fa
commit a7a9b6e3a5
1 changed files with 28 additions and 0 deletions

View File

@ -1598,6 +1598,34 @@ function the_author_msn() {
the_author_meta('msn');
}
/**
* Retrieve the AIM address of the author of the current post.
*
* @since 1.5
* @deprecated 2.8
* @uses $authordata The current author's DB object.
* @return string The author's AIM address.
* @deprecated Use the_author_meta('aim')
*/
function get_the_author_aim() {
_deprecated_function(__FUNCTION__, '2.8', 'get_the_author_meta(\'aim\')' );
return get_the_author_meta('aim');
}
/**
* Display the AIM address of the author of the current post.
*
* @link http://codex.wordpress.org/Template_Tags/the_author_aim
* @since 0.71
* @deprecated 2.8
* @see get_the_author_aim()
* @deprecated Use the_author_meta('aim')
*/
function the_author_aim() {
_deprecated_function(__FUNCTION__, '2.8', 'the_author_meta(\'aim\')' );
the_author_meta('aim');
}
/**
* Retrieve the specified author's preferred display name.
*