Aref Khandan
Aref Khandan
@nadamsoreilly
I have the same problem :(
didnt worked @n3storm
Thanks for attention @n3storm Here is the code, not working... ``` def post_test1(): posts = client.call(GetPosts()) for p in posts: if p.title.lower() == 'ballot': thumb = p.thumbnail p.title = 'Ballot'...
Hey, thanks bro worked for me: ``` def post_test1(): posts = client.call(GetPosts()) for p in posts: if p.title.lower() == 'ballot': post = WordPressPost() thumb = p.thumbnail['attachment_id'] print(thumb) post.title = 'Ballot'...