c# - Create Categories in Wordpress PHP to .NET -


i need creation wordpress categories in (.net) php converted because can programm in c#

    <?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 xml-rpc'         )         ); ?> 


Comments

Popular posts from this blog

php - Submit Form Data without Reloading page -

linux - Rails running on virtual machine in Windows -

php - $params->set Array between square bracket -