creating wordpress category via XML-RPC it is possible ... i am already post using php XML-RPC .... now i want to create category ....
<?php include 'IXR_Library.php'; $log = ''; $pwd = ''; $xmlrpc = 'http://www..com/xmlrpc.php'; $client = new IXR_Client($xmlrpc); $res = $client->query('wp.newCategory', '', $log, $pwd, array( 'name' => '@MyCat000egory', 'slug' => 'my-category-slug', 'parent_id' => 0, 'description' => 'Test category by xml-rpc' ) ); ?>