SimplePie 1.5 is now available!

SimplePie Documentation.  Learn how to use this thing.  It's way better than going to school.

You are here: Documentation » API Reference » SimplePie_Item » search_technorati()

search_technorati()

Description

class SimplePie_Item {
	search_technorati ()
}

Returns the URL for searching Technorati for comments and linkbacks for this posting.

Availability

  • Available since SimplePie Preview Release.

Examples

$feed = new SimplePie();
$feed->set_feed_url('http://simplepie.org/blog/feed/');
$feed->init();
$feed->handle_content_type();
 
foreach ($feed->get_items() as $item)
{
	echo '<a href="' . $item->search_technorati() . '">Search Technorati</a>';
}

See Also


reference/simplepie_item/search_technorati.txt · Last modified: 2011/03/06 03:56 (external edit)