views:

42

answers:

3

I would like to add a post to my Wordpress based blog (my own hosting) from outside of this blog using PHP. In short terms i would like to do something like this:

http://www.mywebsite.com/addPost.php

Adds example post to my blog and thats all i need. How to do this?

+5  A: 

WordPress implements a number of APIs to allow this: http://codex.wordpress.org/XML-RPC_Support

David Dorward
+2  A: 

In addition to xml-rpc support, you might be interested in the "Press This" functionality:

http://codex.wordpress.org/Press_This

John P Bloch