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



get_author_link › WordPress Function

Seit1.2.0
Veraltet2.1.0
get_author_link ( $display, $author_id, $author_nicename = '' )
Parameter: (3)
  • (bool) $display
    Erforderlich: Ja
  • (int) $author_id
    Erforderlich: Ja
  • (string) $author_nicename Optional.
    Erforderlich: Nein
    Standard: (leer)
Siehe:
Gibt zurück:
  • (string|null)
Definiert in:
Codex:

Returns or Prints link to the author's posts.



Quellcode

function get_author_link($display, $author_id, $author_nicename = '') {
	_deprecated_function( __FUNCTION__, '2.1.0', 'get_author_posts_url()' );

	$link = get_author_posts_url($author_id, $author_nicename);

	if ( $display )
		echo $link;
	return $link;
}