通过XML-RPC使用“发送回溯到”字段的wordpress外的新帖子

时间:2015-05-08 17:48:06

标签: php wordpress xml-rpc

我想通过XML-RPC在我的wordpress博客上创建新帖子。

问题: 我想发送引用网址和新帖子,就像我们将发送引用中的URL放在wordpress面板(空格分隔)中的输入框一样:

enter image description here

我的代码到现在为止:

$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 
); 

0 个答案:

没有答案