SimplePie::get_author()publicWP 1.1

Get an author for the feed

Метод класса: SimplePie{}

Хуков нет.

Возвращает

SimplePie_Author|null.

Использование

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

Список изменений

С версии 1.1 Введена.

Код SimplePie::get_author() WP 6.5.2

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

	return null;
}