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
Post a Comment