如何访问我的 WordPress 访客博客的提要?

发布于 2024-11-25 05:42:38 字数 111 浏览 0 评论 0原文

我如何在 WordPress 上访问我的访客博客的提要列表(RSS、Atom),我不需要博客的内容(帖子),而只需要列表(标题、作者、描述),

这可能吗?如果是,怎么办?

谢谢

How can I access a feed list (RSS, Atom) of my guest blog on wordpress, I don't want the content of the blog (posts) but only the list (title, autor, description)

Is it possible? if yes, how?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

玻璃人 2024-12-02 05:42:38

取决于您的访客博客设置。要访问您网站的 RSS 提要,您需要将 /feed 附加到您的 URL:

http://yourdomain.com/feed

要访问特定类别的提要(如果您碰巧让您的客座博主只发布到特定类别:

http://yourdomain.com/category/<<categoryname>>/feed

或者基于每个标签) :

http://yourdomain.com/tags/<<tagname>>/feed

基本上就是这样了...

Depends on your guest blog setup. To access the RSS feed of your site you need to append /feed to your URL:

http://yourdomain.com/feed

To access the feed of a certain category (if you happen to have your guest bloggers only post to a specific category:

http://yourdomain.com/category/<<categoryname>>/feed

Or on a per-Tag-basis:

http://yourdomain.com/tags/<<tagname>>/feed

That's basically it ...

夜吻♂芭芘 2024-12-02 05:42:38

您可以使用以下代码加载提要详细信息,

            SyndicationFeed feed = SyndicationFeed.Load(XmlReader.Create("http://en.blog.wordpress.com/feed/"));
            IEnumerable<SyndicationItem> syndicationItems = feed.Items;
            int counter = 0;
            int maxItems = 10;
            foreach (SyndicationItem syndicationItem in syndicationItems)
            {
                if (counter >= maxItems)
                {
                    break;
                }
                counter += 1;
                Response.Write("<h4><strong>" + syndicationItem.Title.Text + "</strong></h4>");
                Response.Write("<p class='small'>Posted on " + syndicationItem.PublishDate.ToString("MMMM d, yyyy") + "</p>");
            }

You can load feed details using following code,

            SyndicationFeed feed = SyndicationFeed.Load(XmlReader.Create("http://en.blog.wordpress.com/feed/"));
            IEnumerable<SyndicationItem> syndicationItems = feed.Items;
            int counter = 0;
            int maxItems = 10;
            foreach (SyndicationItem syndicationItem in syndicationItems)
            {
                if (counter >= maxItems)
                {
                    break;
                }
                counter += 1;
                Response.Write("<h4><strong>" + syndicationItem.Title.Text + "</strong></h4>");
                Response.Write("<p class='small'>Posted on " + syndicationItem.PublishDate.ToString("MMMM d, yyyy") + "</p>");
            }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文