我正在使用 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; ?>
任何帮助将不胜感激....