提交帖子时通过 XMLRPC API 在 WordPress 中设置帖子标签?
我正在尝试通过 XMLRPC 使用 WordPress API 提交新帖子。但我无法设置帖子标签(也无法设置类别)。
echo "Adding $term to blog via XMLRPC ...";
$client = new IXR_Client("http://$blog.wordpress.com/xmlrpc.php");
$content = array('title'=>$term,
'description'=>"All about $term",
'category'=>'barvaz,moshe',
'tags'=>'tag1,tag2');
$client->query('metaWeblog.newPost', 0, $username, $password, $content, true);
$rv = $client->getResponse();
print_r($rv);
有什么想法吗?
I am trying to use WordPress API via XMLRPC to submit new posts. But i can't set the post tags (nor the categories).
echo "Adding $term to blog via XMLRPC ...";
$client = new IXR_Client("http://$blog.wordpress.com/xmlrpc.php");
$content = array('title'=>$term,
'description'=>"All about $term",
'category'=>'barvaz,moshe',
'tags'=>'tag1,tag2');
$client->query('metaWeblog.newPost', 0, $username, $password, $content, true);
$rv = $client->getResponse();
print_r($rv);
Any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更多电子邮件:[电子邮件受保护]
more email : [email protected]
您还可以像这样设置自定义字段
You also can set custom field like this