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

link|improve this question

2  
Please post the function list_all_wpmu_blogs() – Michael Feb 11 at 16:17
@Michael See my update. Thanks – user1091558 Feb 11 at 16:25
feedback

4 Answers

up vote 0 down vote accepted

You can do it like this, if you can't change the function:

<?php
ob_start();
list_all_wpmu_blogs('', '', '', '', 0);
$output = ob_get_clean();
$arr = explode("\n", $output);  // change \n to your separator
?>

However it is much better if you can make changes to your function and use it like this:

<?php 
$blogs = list_all_wpmu_blogs('', '', '', '', 0);
var_dump($blogs);
?>

Here is the update for the function: http://pastebin.com/y5CkCuxZ

link|improve this answer
feedback

Without your function its a little hard but...

Instaed of outputing put them into the array:

$new_array[] = $myVar;

$new_array[] will add the variable to the end of the array.

link|improve this answer
feedback

"I have a function" - it is a function provided by WPMU and what it does is echo all the blogs. I'm not sure about an alternative function (http://codex.wordpress.org/WPMU_Functions/get_blog_list - For performance reasons this function is not recommended.), but I'm sure there is one. Alternatively you can use php's output buffering (http://php.net/manual/en/function.ob-start.php) to get it in a string (see Alex' answer), but it might be best to write your own SQL to query the table in the database.

What version of wordpress are you using?

Edit:

You can use this query

global $wpdb;
$sites = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM wp_blogs ORDER BY blog_id" ) );
link|improve this answer
I'm using 3.3.1 – user1091558 Feb 11 at 16:27
There we go :-) Use the function get_blog_list() wpmututorials.com/how-to/return-a-list-of-sites-on-the-network – Richard Feb 11 at 16:30
That function has been deprecated – user1091558 Feb 11 at 17:00
see my updated answer – Richard Feb 11 at 17:12
feedback
function list_all_wpmu_blogs($tmp_limit, $tmp_name_or_url, $tmp_begin_wrap, $tmp_end_wrap, $tmp_order) {
  $array = array();

  for($i = 1; $i <= 500; $i++) {
    $array[] = '<a href="http://subdomain.myblog.com">blog'.$i.'</a>';
    // or something like this here using $array[] = xxx;
  }

  return $array;
}
link|improve this answer
Hey I given names like blog1,blog2 etc just for sample. – user1091558 Feb 11 at 16:22
list_all_wpmu_blogs is not a function he made himself and changing the function would probably mean changing the core files of Wordpress - not a good idea. – Richard Feb 11 at 16:24
I given this as an example itself :). You can add anything to $array. Like, for ex, another array :). – Krzysztof Trzos Feb 11 at 16:24
feedback

Your Answer

 
or
required, but never shown

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