the_author_posts_link() – Displays an HTML link to the author page of the current post’s author.

You appear to be a bot. Output may be restricted

Description

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

Usage

the_author_posts_link( $deprecated );

Parameters

$deprecated
( string ) optional – Unused.

Returns

void

Source

File name: wordpress/wp-includes/author-template.php
Lines:

1 to 6 of 6
function the_author_posts_link( $deprecated = '' ) {
  if ( ! empty( $deprecated ) ) {
    _deprecated_argument( the_author_posts_link, '2.1.0' );
  }
  echo get_the_author_posts_link();
}
 

 View on GitHub View on Trac