使用WordPress中的SimplePie在Feed的频道中获取元素?

时间:2013-01-04 13:42:03

标签: wordpress youtube simplepie

我应该如何使用get_channel_tags()或我应该使用SimplePie的哪些功能来获取Feed的频道/标题部分中的YouTube rss播放列表或其他元素/属性的totalResults?

播放列表示例:http://gdata.youtube.com/feeds/api/playlists/PL25BD62C6275E88F6?alt=rss

这不起作用:

$totalResults = $rss->get_channel_tags('http://a9.com/-/spec/opensearchrss/1.0/', 'totalResults');
$totalResultsData = $totalResults[0];

1 个答案:

答案 0 :(得分:0)

我没有让它工作,但如果我使用Atom提要,它可以使用函数get_feed_tags()。

这有效:

播放列表: http://gdata.youtube.com/feeds/api/playlists/PL25BD62C6275E88F6?alt=atom (您可以删除?alt = atom参数,因为它默认使用)

$totalResults = $rss->get_feed_tags('http://a9.com/-/spec/opensearch/1.1/', 'totalResults');
$totalResultsData = $totalResults[0]['data'];