尝试使用wp_remote_post()
,但是,它一直将type
添加为post
。
还有另一个功能可以将帖子类型更改为page
?
我尝试过:
'body' => array(
'title' => 'My test',
'status' => 'publish',
'content' => 'lalala',
'type' => 'page', // tried this
'post_type' => 'page', // and this too
)