我正在做的是解析WordPress博客的RSS提要,并从XML文件中获取title
,link
,description
和pubDate
的信息。
<?php
$html = "";
$url = "http://www.ajneffects.com/blog/feed/";
$xml = simplexml_load_file($url);
for ($i = 0; $i < 5; $i++) {
$title = $xml->channel->item[$i]->title;
$link = $xml->channel->item[$i]->link;
$description = $xml->channel->item[$i]->description;
$pubDate = $xml->channel->item[$i]->pubDate;
$html .= "<a href='$link'><h3>$title</h3></a>";
$html .= "$description";
// $html .= "$pubDate";
}
echo $html;
抱歉标记不好,但就是这样。
问题是,我不想发布标记为“Tutorials”以在渲染的HMTL文件中显示。我不知道如何完成它。
答案 0 :(得分:2)
尝试网址:http://www.ajneffects.com/blog/feed/?cat=-5
这里5是你的“教程”类别id
了解更多信息,请参阅:https://codex.wordpress.org/WordPress_Feeds