我正在使用wp\\u insert\\u post以编程方式插入帖子。典型的呼叫如下所示:
$news_item = array (
\'post_title\' => $titleField,
\'post_content\' => $retrieve_result[\'content\'],
\'post_status\' => \'pending\',
\'post_author\' => $user->ID,
\'post_type\' => \'post\',
\'post_date_gmt\' => $post_date_gmt
);
$post_id = wp_insert_post( $news_item );
我的问题是关于参数post\\u date\\u gmt,这是正确的用法吗?我应该改用post\\u date吗?屏幕上显示的值是多少?我需要两者的解释。文档提供的内容不多。
谢谢