SimplePie::get_author

Advertisement

Summery Summery

Get an author for the feed

Syntax Syntax

SimplePie::get_author( int $key )

Parameters Parameters

$key

(Required) The author that you want to return. Remember that arrays begin with 0, not 1

Return Return

(SimplePie_Author|null)

Source Source

File: wp-includes/class-simplepie.php

				}
			}
		}
		if ($type & SIMPLEPIE_TYPE_RSS_SYNDICATION)
		{
			if ($image = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'image'))
			{
				if (isset($image[0]['child'][$namespace][$tag]))
				{
					return $image[0]['child'][$namespace][$tag];
				}
			}

Advertisement

Changelog Changelog

Changelog
Version Description
1.1 Introduced.

Advertisement

Leave a Reply