the_author_posts_link( string $deprecated =  )

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

Parameters

$deprecatedstringoptional
Unused.

Default:''

Source

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

Changelog

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

User Contributed Notes

You must log in before being able to contribute a note or feedback.