SimplePie::get_author()
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() SimplePie::get author WP 6.6.2
public function get_author($key = 0) { $authors = $this->get_authors(); if (isset($authors[$key])) { return $authors[$key]; } return null; }