通过脚本批量发布到 WordPress
在当前项目中,我需要向 WordPress 批量发布帖子(从文本文件),并且需要添加我自己选择的日期。
最好的方法是什么?
In current project i need to make bulk posts to wordpress (from text files) and need to add dates of mine own choice .
What is best way to do it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 XML-RPC。您可以构建一个脚本来读取文本文件,然后向 WordPress 服务器发出 XML-RPC 请求以创建帖子。您需要拥有有效的用户名和密码才能完成此操作(并且还需要在 WordPress 站点上启用 XML-RPC)。
API 的定义相当明确。您对
metaWeblog.newPost
进行 XML-RPC 调用,并传入博客信息、帖子内容以及您的用户名和密码。 WordPress 会完成剩下的工作。您还可以将帖子发布/将发布的日期指定为可选字段。进一步阅读
Use XML-RPC. You can build a script that reads the text file, then makes an XML-RPC request to the WordPress server to create the post. You'll need to have a valid username and password to make this work (and will need to enable XML-RPC on the WordPress site as well).
The API is fairly well-defined. You make an XML-RPC call to
metaWeblog.newPost
and pass in the blog information, the post content, and your username and password. WordPress does the rest. You can also specify the date the post was/will be published as an optional field.Further reading