I am using python wordpress_xmlrpc library for extracting wordpress blog data. I want to fetch all posts of my wordpress blog. This is my code
But this is returning only the latest 10 posts. Is there any way to get all the posts?
Code:
client = Client(url, 'user', 'passw')
all_posts = client.call(GetPosts())
But this is returning only the latest 10 posts. Is there any way to get all the posts?