wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



get_author_rss_link › WordPress Function

Depuis1.2.0
Dépréciée2.5.0
get_author_rss_link ( $display = false, $author_id = 1 )
Paramètres: (2)
  • (bool) $display
    Requis: Non
    Défaut: false
  • (int) $author_id
    Requis: Non
    Défaut: 1
Voir:
Retourne:
  • (string)
Défini(e) dans:
Codex:

Print/Return link to author RSS feed.



Source

function get_author_rss_link($display = false, $author_id = 1) {
	_deprecated_function( __FUNCTION__, '2.5.0', 'get_author_feed_link()' );

	$link = get_author_feed_link($author_id);
	if ( $display )
		echo $link;
	return $link;
}