WordPress:在 RSS2 提要中包含分页信息?

发布于 2024-11-25 04:34:27 字数 217 浏览 2 评论 0原文

我正在编写一个读取 WordPress RSS2 提要的 Java servlet。我需要采用哪些方法来实现分页?在这里不使用 wordpress 主题,所以分页插件无法工作(我的这个假设是错的吗?)

我想要实现的只是在 Rs22 帖子中读取并在 Java 层分页。

那么有没有一种方法可以让我获得帖子数量并在 Rss2 中发布#s 本身?

我每页有固定数量的帖子 (6)

I am coding a Java servlet that reads in a wordpress rss2 feed. What are the approaches I need to look at implementing pagination? not using wordpress themes here so, the pagination plugin wont work (am i wrong with this assumption?)

All i want to implement is read in Rs22 posts and paginate at Java layer.

So is there a way where I can get number of posts and post #s itself in Rss2?

I have a fixed number of posts per page (6)

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

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

发布评论

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

评论(1

人心善变 2024-12-02 04:34:27

您可以将“?paged=2”添加到提要 URL 以检索帖子的第二页。它读取的默认帖子是在 WordPress 仪表板 > 中配置的。设置>阅读>联合供稿显示最近的 >设置数量

您的 URL 可能如下所示: http://www.domain.com/feed?paged=2

要获取帖子数量和帖子 ID,您可以在数据库上运行查询。

You can add '?paged=2' to the feed URL to retrieve the second page of posts. The default posts it reads is configured in the Wordpress Dashboard > Settings > Reading > Syndication feeds show the most recent > Set the number

So your URL might look like: http:/www.domain.com/feed?paged=2

To get the number of posts and post IDs you could run a query on the database.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文