wpseek.com
A WordPress-centric search engine for devs and theme authors



the_author_posts_link › WordPress Function

Since1.2.0
Deprecatedn/a
the_author_posts_link ( $deprecated = '' )
Parameters:
  • (string) $deprecated Unused.
    Required: No
    Default: (empty)
Defined at:
Codex:
Change Log:
  • 4.4.0

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



Source

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