First there were two, and now there are three -- in the @since versions that came before and that shall be. And so it will be, says nacin.

Props JustinSainton, SergeyBiryukov, DrewAPicture.
Fixes #26713.

Built from https://develop.svn.wordpress.org/trunk@26868


git-svn-id: http://core.svn.wordpress.org/trunk@26754 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes
2013-12-24 18:57:12 +00:00
parent 1f5f0fcd33
commit cd8cedc40d
39 changed files with 289 additions and 251 deletions

View File

@@ -13,7 +13,8 @@
/**
* Retrieve the author of the current post.
*
* @since 1.5
* @since 1.5.0
*
* @uses $authordata The current author's DB object.
* @uses apply_filters() Calls 'the_author' hook on the author display name.
*
@@ -68,7 +69,8 @@ function the_author( $deprecated = '', $deprecated_echo = true ) {
/**
* Retrieve the author who last edited the current post.
*
* @since 2.8
* @since 2.8.0
*
* @uses $post The current post's DB object.
* @uses get_post_meta() Retrieves the ID of the author who last edited the current post.
* @uses get_userdata() Retrieves the author's DB object.
@@ -93,7 +95,8 @@ function get_the_modified_author() {
/**
* Display the name of the author who last edited the current post.
*
* @since 2.8
* @since 2.8.0
*
* @see get_the_author()
* @return string The author's display name, from get_the_modified_author().
*/
@@ -184,7 +187,9 @@ function get_the_author_link() {
* author's name.
*
* @link http://codex.wordpress.org/Template_Tags/the_author_link
* @since 2.1
*
* @since 2.1.0
*
* @uses get_the_author_link()
*/
function the_author_link() {
@@ -194,7 +199,8 @@ function the_author_link() {
/**
* Retrieve the number of posts by the author of the current post.
*
* @since 1.5
* @since 1.5.0
*
* @uses $post The current post in the Loop's DB object.
* @uses count_user_posts()
* @return int The number of posts by the author.