I want a C # application to post to a WordPress blog. The title of the post would be the value of the variable title
and the article would be the variable html
. How do I get this?
Obs: Console project.
I want a C # application to post to a WordPress blog. The title of the post would be the value of the variable title
and the article would be the variable html
. How do I get this?
Obs: Console project.
You should use WordPress' XML-RPC interface . There are many examples and articles about it that you can use ( exam ).
I believe this project in GitHub in C # (in Console) where you can do one post using the WordPress XML-RPC interface can help you.