如何使用client.call函数获取wordpress博客的所有帖子?

时间:2015-06-02 05:11:44

标签: python wordpress xmlrpclib xmlrpcclient

我正在使用python wordpress_xmlrpc库来提取wordpress博客数据。我想获取我的wordpress博客的所有帖子。这是我的代码

client = Client(url, 'user', 'passw')
all_posts = client.call(GetPosts())

但这只返回了最新的10个帖子。有没有办法获得所有帖子?

2 个答案:

答案 0 :(得分:0)

根据documentation,您可以传递一个参数,指明您要检索的帖子数量为:

client.call(GetPosts({'number': 100}))

或者,如果您想获取所有帖子,请查看以下内容:https://python-wordpress-xmlrpc.readthedocs.org/en/latest/examples/posts.html#result-paging

答案 1 :(得分:0)

这就是我的方法:

strtotime()