0
我使用SimplePie在我的頁面上顯示RSS源。 現在我想顯示評論的數量。Simplepie和斜槓:評論
的RSS:
<slash:comments>0</slash:comments>
我怎樣才能顯示這個用了SimplePie?
我使用SimplePie在我的頁面上顯示RSS源。 現在我想顯示評論的數量。Simplepie和斜槓:評論
的RSS:
<slash:comments>0</slash:comments>
我怎樣才能顯示這個用了SimplePie?
你想用$item->get_item_tags()
來做到這一點。猜測,你需要http://purl.org/rss/1.0/modules/slash/
命名空間,comments
標籤。
$comments = $item->get_item_tags('http://purl.org/rss/1.0/modules/slash/', 'comments');
然後,你可以看看這個數據結構來找出你需要的東西。猜...
$number = $comments[0]['data'];
這個工作對我來說:$ number = $ comments [0] ['data']; – 2011-03-23 07:52:06
是來自單一飼料的飼料嗎?是您的網頁上還是Feed中的評論? – 2011-03-17 16:21:04
評論在頁面上。但在Feed中,我有 COUNT slash:comment>標記。 –
2011-03-17 16:25:30
它目前看起來不像SimplePie支持評論標籤。你可以通過添加2個更多的函數來增加支持,比如get_comment()和get_comment_tags() – 2011-03-17 16:42:46