Max Cutler

Results 25 comments of Max Cutler

Hi @eaglus, we will take a look at the changes this week. At a minimum the package major version needs to be increased, and we will review further when time...

I'm sorry for the delay in getting this reviewed, our team has been busy with other commitments. At this point I cannot commit to a particular timeline for reviewing, merging,...

WordPress gives more information in `GetPost` than it expects in `EditPost`, which is leading to this issue. I can handle it better in the library, and I'll try to do...

Correct, thumbnail for `EditPost` should just be the ID. Can you confirm in WordPress that a media item with ID=720 actually exists? Unfortunately I won't have time to investigate this...

Have you taken a look at the examples in the docs? http://python-wordpress-xmlrpc.readthedocs.org/en/latest/examples/posts.html#custom-post-types contains sample code for deal with post meta fields; even though the title says Custom Post Types, the...

This behavior is a quirk of how WordPress' XML-RPC API works. For `getPost` or `getPosts`, the thumbnail field returns a struct/object: https://codex.wordpress.org/XML-RPC_WordPress_API/Posts#Return_Values But when using `newPost` or `editPost`, the thumbnail...

This could probably be implemented as a custom `Transport` implementation, but we should start by figuring out how it would work at a conceptual level. From code that is consuming...

In version 2.3 I've exposed a `transport` parameter that you can pass with your custom transports. I'm not sure it makes sense to bundle particular transports in the library, but...

In my previous comment I said that I released version 2.3 with a new 'transport' parameter to the constructor that allows you to pass your own transports. You can even...

I think the proper variable to use is `new_page.wp_page_template`, but I should add more explicit support and documentation.