W3cubDocs

/WordPress

the_author_posts_link( string $deprecated = '' )

Displays an HTML link to the author page of the current post’s author.

Parameters

$deprecated

(string) (Optional) Unused.

Default value: ''

Source

File: wp-includes/author-template.php

function the_author_posts_link( $deprecated = '' ) {
	if ( ! empty( $deprecated ) ) {
		_deprecated_argument( __FUNCTION__, '2.1.0' );
	}
	echo get_the_author_posts_link();
}

Changelog

Version Description
4.4.0 Converted into a wrapper for get_the_author_posts_link()
1.2.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/the_author_posts_link