wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



the_author_posts_link › WordPress Function

Seit1.2.0
Veraltetn/v
the_author_posts_link ( $deprecated = '' )
Parameter:
  • (string) $deprecated Unused.
    Erforderlich: Nein
    Standard: (leer)
Definiert in:
Codex:
Changelog:
  • 4.4.0

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



Quellcode

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