Ben yeni mesaj göndermek için Xmlrpc üzerinden WordPress API kullanmaya çalışıyorum. Ama sonrası etiketleri (ne kategoriler) ayarlanamaz.
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);
Herhangi bir fikir?