WP_UPDATE_POST使我的帖子变得粘滞

时间:2013-07-19 作者:user1983017

我正在使用以下代码更新我的帖子:

$post_information = array(
    \'ID\' => $_REQUEST[\'ID\'],
    \'post_content\' =>  $_REQUEST[\'content\'],
    \'post_status\'  =>  \'publish\'
);
wp_update_post($post_information);  
但是,当我更新我的帖子时,它也会使我的帖子变粘,请告诉我如何更新我的帖子,使其变白,使其变粘。

1 个回复
SO网友:user1983017

I need to add: post_date_gmt

$post_information = array(
    \'ID\' => $_REQUEST[\'ID\'],
    \'post_content\' =>  $_REQUEST[\'content\'],
    \'post_status\'  =>  \'publish\',
    \'post_date_gmt\' => $post->post_date_gmt
);
wp_update_post($post_information); 
结束

相关推荐