我正在使用 PHP 解析常规 wordpress.com 博客的 rss 提要,以便在我的网站上显示帖子的预览。
它正确显示:标题、描述和出版日期。但我还想显示每个帖子的图像。如果我打开提要的 URL,会有一个带有“媒体文件链接”的图表,但我不知道如何访问这些链接。
你有什么建议吗?
这是我正在使用的代码:
<?php
$xml=("http://testmustard.wordpress.com/feed/");
$xmlDoc = new DOMDocument();
$xmlDoc->load($xml);
$items=$xmlDoc->getElementsByTagName('item');
$max_items= 15;
?>
<?php foreach( $items as $i => $item ):?>
<?php
if($i>=$max_items) break;
$title = $item->getElementsByTagName( "title" )->item(0)->nodeValue;
$description = $item->getElementsByTagName( "description" )->item(0)->nodeValue;
$data = $item->getElementsByTagName( "pubDate" )->item(0)->nodeValue;
?>
<div class="posts">
<div class="rssentry">
<h2><?php echo $title?></h2>
<div class="rsscontent"><?php echo html_entity_decode($description)?></div>
<div class="metadata"><?php echo $data?></div>
</div>
</div>
<?php endforeach;?>
</div>
非常感谢你的帮助