我想通过XML-RPC在我的wordpress博客上创建新帖子。
问题: 我想发送引用网址和新帖子,就像我们将发送引用中的URL放在wordpress面板(空格分隔)中的输入框一样:
我的代码到现在为止:
$content = array(
'title'=>$title,
'description'=>$body,
'mt_allow_comments'=>0, // 1 to allow comments
'mt_allow_pings'=>0, // 1 to allow trackbacks
'post_type'=>'post',
'mt_keywords'=>$keywords,
'categories'=>array($category),
'wp_post_thumbnail' => $thumbnail_id
);