如何从RSS源中排除归类为“教程”的帖子?

时间:2016-09-12 05:00:04

标签: php wordpress

我正在做的是解析WordPress博客的RSS提要,并从XML文件中获取titlelinkdescriptionpubDate的信息。

<?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文件中显示。我不知道如何完成它。

1 个答案:

答案 0 :(得分:2)

尝试网址:http://www.ajneffects.com/blog/feed/?cat=-5 这里5是你的“教程”类别id

了解更多信息,请参阅:https://codex.wordpress.org/WordPress_Feeds