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 » get_description()

get_description()

Description

class SimplePie {
	get_description ()
}

Returns the description for the feed. If no description is available, SimplePie will look for <itunes:summary>, then <itunes:subtitle> tags.

Availability

  • Available since SimplePie 1.0.
  • Previously existed as get_feed_description() since SimplePie 0.8.

Examples

Display the description

$feed = new SimplePie();
$feed->set_feed_url('http://simplepie.org/blog/feed/');
$feed->init();
$feed->handle_content_type();
 
echo $feed->get_description();

See Also


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