在.Net网站上显示wordpress最近的帖子?

时间:2010-11-02 23:04:22

标签: .net wordpress

我需要在另一个运行在.Net网站上的Wordpress php网站上显示一些博客“最近帖子”的标题(也许是第一行)。

在做了一点谷歌搜索后,我没有找到任何有针对性的资源。有人提到使用RSS。

请有人指出我正确的方向。

干杯!

1 个答案:

答案 0 :(得分:2)

使用SyndicationFeed类非常容易:

using (var reader = XmlReader.Create("http://someblog.wordpress.com/feed/"))
{
    var feed = SyndicationFeed.Load(reader);
    // Print title and summary of 5 most recent posts
    foreach (var post in feed.Items.Take(5))
    {
        Console.WriteLine ("--- {0} ---", post.Title.Text);
        Console.WriteLine (post.Summary.Text);
        Console.WriteLine();
    }
}