In my plugin, I am trying to get the list of categories available in all the available network website.

Is it possible without writing SQL query?

link|improve this question

50% accept rate
is this concerning the Wordpress Plugin API? – RobertPitt Sep 13 '10 at 21:06
feedback

2 Answers

I believe you can use: get_all_category_ids()

The function is located in wp-includes\category.php

here is more info: http://codex.wordpress.org/Function_Reference/get_all_category_ids

link|improve this answer
feedback
up vote 0 down vote accepted

I got the answer. if we all the blog id's in an array $blog_id_list , then we can do:

foreach($blog_id_list as $blog_id)
{
    switch_to_blog($blog_id);
    get_categories(); //use it as required.
}
restore_current_blog();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.