I have a function
list_all_wpmu_blogs($tmp_limit, $tmp_name_or_url, $tmp_begin_wrap, $tmp_end_wrap, $tmp_order)
If i use like this
<?php list_all_wpmu_blogs('', '', '', '', 0); ?>
It lists all my 500+ blogs like this
<a href="http://subdomain.myblog.com">blog1</a>
<a href="http://subdomain.myblog.com">blog2</a>
<a href="http://subdomain.myblog.com">blog3</a>
..........
..........
<a href="http://subdomain.myblog.com">blog500</a>
Now i want to store those links in a array instead of output it.
Can anyone help me to store them in a array?
I want array like this.
array(blog1,blog2,.....,blog500);
Update:
Here is my full function list_all_wpmu_blogs() code
list_all_wpmu_blogs()– Michael Feb 11 at 16:17