How to publish new post in automatically in wordpress

Go To StackoverFlow.com

0

I want to create a plugin, through that plugin user can publish new post, without using Wordpress post option. Is there any solution available?

2012-04-05 15:09
by Mifas
http://stackoverflow.com/questions/7053346/wordpress-create-post-with-plugi - Dev 2012-04-05 15:13
one more option http://codex.wordpress.org/XML-RPC_w - Vamsi Krishna B 2012-04-05 15:16
Or there is way to publish a new post via a secret email as well in WP - anubhava 2012-04-05 15:17
Thanks @dev. Found it - Mifas 2012-04-05 15:24


0

If you want to publish a post from a Plugin, then you have to call the wp_insert_post() function, with the appropriate details of the new post that you want to create.

2012-04-18 06:16
by Sudar
Ads