如何将一个 WP 博客的帖子内容包含到另一 WP 博客的帖子/页面中
我想在另一个域的帖子/页面中呈现帖子的内容。原帖会定期更新,因此我无法使用复制/粘贴。有办法做到这一点吗?
PS 这两个博客都是我的,所以我没有版权问题并且可以访问这两个网站上的代码。 PPS 我只需要内容而不是评论等。
提前致谢!
I want to present the content of a post in a post/page on another domain. The original post is updated regularly so I cannot use copy/paste. Is there a way to do this?
P.S. both blogs are mine so I have no copyright issues and access to code on both sites.
P.P.S I only need the content not comments etc.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此,作为两个实例,您有两个选择
编写一段自定义代码以从底层 WordPress 数据库中提取帖子
并将其放入您的帖子中。
由于帖子以 rss 形式输出,您可以使用该 rss 在其他博客中显示所需的帖子,因此有用于 rss 导入的插件,例如 http://wordpress.org/extend/plugins/rss-import/
You therefore, as two instances, have two options
Write a piece of custom code to extract the post from the underlying wordpress db
and place it into your post.
As posts are output as rss you could use that rss to display the required post in the other blog, there are plugins for rss import such as http://wordpress.org/extend/plugins/rss-import/