I can get the feed items but how do I get the channel title?
Thanks
I can get the feed items but how do I get the channel title?
Thanks
You can't. At least not through wp_rss(). To get the channel title look at using fetch_rss() instead. Example:
<?php
$woof = fetch_rss('http://example.com/feed/');
echo $woof->channel['title'];
?>
You may be better off learning fetch_rss() if you want to customize the output of feed(s):
Kafkaesqui - many thanks for your help!
This topic has been closed to new replies.