SimplePie::get_author()publicWP 1.1

Get an author for the feed

Method of the class: SimplePie{}

No Hooks.

Return

SimplePie_Author|null.

Usage

$SimplePie = new SimplePie();
$SimplePie->get_author( $key );
$key(int)
The author that you want to return. Remember that arrays begin with 0, not 1

Changelog

Since 1.1 Introduced.

SimplePie::get_author() code WP 6.5.2

public function get_author($key = 0)
{
	$authors = $this->get_authors();
	if (isset($authors[$key]))
	{
		return $authors[$key];
	}

	return null;
}