wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



the_author_posts_link › WordPress Function

Da1.2.0
Deprecaton/a
the_author_posts_link ( $deprecated = '' )
Parametri:
  • (string) $deprecated Unused.
    Richiesto: No
    Default: (vuoto)
Definito a:
Codex:
ChangeLog:
  • 4.4.0

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



Sorgenti

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