How we can get categeroy of wordpress site by xml-rpc.
i now that we need to use username and pass to connect to the site.
set_time_limit(0);
include("xmlrpc.inc");
$GLOBALS['xmlrpc_internalencoding'] = 'UTF-8';
define ('DOMAIN', 'abc.com'); // wordpress server
define ('BLOGID', 1);
define ('USER', 'admin'); // wordpress admin account
define ('PASSWORD', 'pass'); // wordpress password
How i will continue to get the category list?
how i will use wp.getCategories class?
i have a code like this i do not know it is good or not
$categories = $wp->getCategoriesEx($blogID = 1);
thanks
Based on my own code…
Your result will be an array something like this…