SimplePie_Item::get_copyright

Advertisement

Summery Summery

Get the copyright info for the item

Syntax Syntax

SimplePie_Item::get_copyright()

Description Description

Uses <atom:rights> or <dc:rights>

Return Return

(string)

Source Source

File: wp-includes/SimplePie/Item.php

		{
			return $authors;
		}

		return null;
	}

	/**
	 * Get the copyright info for the item
	 *
	 * Uses `<atom:rights>` or `<dc:rights>`
	 *
	 * @since 1.1
	 * @return string
	 */
	public function get_copyright()
	{
		if ($return = $this->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'rights'))
		{

Advertisement

Changelog Changelog

Changelog
Version Description
1.1 Introduced.

Advertisement

Leave a Reply