2013-01-04 57 views
0

我應該如何使用get_channel_tags()或者我應該使用SimplePie來獲得YouTube的rss播放列表或其他元素/屬性在Feed的頻道/標題部分中的總體結果?在Wordpress中使用SimplePie獲取Feed的渠道中的元素?

示例播放列表: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]; 

回答

0

我沒有得到它的工作,但如果我使用的Atom feed它的工作原理與功能get_feed_tags()。

這工作:

播放列表: http://gdata.youtube.com/feeds/api/playlists/PL25BD62C6275E88F6?alt=atom (您可以刪除ALT =原子參數,因爲它是使用默認?)

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