set emailed posts to be published. won't do no good moblogging if in the end one has to publish everything later

git-svn-id: http://svn.automattic.com/wordpress/trunk@2196 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
michelvaldrighi 2005-02-01 13:21:12 +00:00
parent e1325ba94b
commit e75e000346
1 changed files with 4 additions and 1 deletions

View File

@ -132,7 +132,10 @@ for ($i=1; $i <= $count; $i++) :
$post_category = $post_categories;
$post_data = compact('post_content','post_title','post_date','post_date_gmt','post_author','post_category');
// or maybe we should leave the choice to email drafts? propose a way
$post_status = 'publish';
$post_data = compact('post_content','post_title','post_date','post_date_gmt','post_author','post_category', 'post_status');
$post_ID = wp_insert_post($post_data);