post.FeaturedImageId = client.UploadFile(featureImage).Id; var id =Convert.ToInt32(client.NewPost(post));
When I want to sent a post to wordpress I should sent 2 request one for feature image an another for post contents. Could I use one request for both of them?
post.FeaturedImageId = client.UploadFile(featureImage).Id; var id =Convert.ToInt32(client.NewPost(post));
When I want to sent a post to wordpress I should sent 2 request one for feature image an another for post contents. Could I use one request for both of them?