1

我正在使用 Simple Pie 来显示来自多个 RSS 源的内容。

我已经成功地显示了 RSS 源的内容。我现在想要的是显示作者姓名或提要标题。

例子:

这是 RSS 提要网址:http ://aaron.dietfreelife.com/feed/

我希望能够检索提要标题,如附图所示。

检索提要标题

这是我的代码规范:

<?php
foreach ($feed->get_items() as $item):
?>

<div class="item">
   <h2><a href="<?php echo $item->get_permalink(); ?>"><?php echo $item->get_title(); ?></a></h2>
   <p><?php echo $item->get_description(); ?></p>   
   <p><small>Posted on <?php echo $item->get_date('j F Y | g:i a'); ?></small></p>
</div>
<?php endforeach; ?>

任何帮助将不胜感激....

4

1 回答 1

3

我相信它是这样的:

foreach ($feed->get_items() as $item) {
   $item->get_feed()->get_title()
   // or if you need more than one thing from the feed like permalink
   $parent_feed = $item->get_feed();
   $parent_feed->get_title();
   $parent_feed->get_permalink();
}

文档显示它在提要构造函数中使用,但我以这种方式使用它。

于 2013-06-14T19:37:28.087 回答