SimplePie::get_image_tags()publicWP 1.0

Get data for an channel-level element

This method allows you to get access to ANY element/attribute in the image/logo section of the feed.

See SimplePie::get_feed_tags() for a description of the return value

Method of the class: SimplePie{}

No Hooks.

Return

Array.

Usage

$SimplePie = new SimplePie();
$SimplePie->get_image_tags( $namespace, $tag );
$namespace(string) (required)
The URL of the XML namespace of the elements you're trying to access
$tag(string) (required)
Tag name

Notes

Changelog

Since 1.0 Introduced.

SimplePie::get_image_tags() code WP 6.5.2

public function get_image_tags($namespace, $tag)
{
	$type = $this->get_type();
	if ($type & SIMPLEPIE_TYPE_RSS_10)
	{
		if ($image = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'image'))
		{
			if (isset($image[0]['child'][$namespace][$tag]))
			{
				return $image[0]['child'][$namespace][$tag];
			}
		}
	}
	if ($type & SIMPLEPIE_TYPE_RSS_090)
	{
		if ($image = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'image'))
		{
			if (isset($image[0]['child'][$namespace][$tag]))
			{
				return $image[0]['child'][$namespace][$tag];
			}
		}
	}
	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];
			}
		}
	}
	return null;
}