tags:

views:

33

answers:

1

Im trying to use this function with Wordpress:

http://www.wprecipes.com/post-on-your-wordpress-blog-using-php

When trying to add extra options im hitting problems:

Using the Wordpress Codex here: http://codex.wordpress.org/Function_Reference/wp_insert_post

Specifically trying to add:

  'post_date' => [ Y-m-d H:i:s ] //The time post was made.

  'post_excerpt' => [ <an excerpt> ] //For all your post excerpt needs.

Can anyone add them to the function for me?

A: 

Check the documentation for the metaWeblog.newPost method and Wordpress's mw_newPost function (in xmlrpc.php). The required keys are dateCreated (or date_created_gmt) and mt_excerpt respectively.

Richard M