La funzione WordPress switch_to_blog()
prevede un numero intero come parametro di input. Puoi leggere di più al riguardo nel Codice:
http://codex.wordpress.org/Function_Reference/switch_to_blog
Prova invece questo tipo di struttura:
// Get the current blog id
$original_blog_id = get_current_blog_id();
// All the blog_id's to loop through
$bids = array( 1, 2 );
foreach( $bids as $bid )
{
// Switch to the blog with the blog_id $bid
switch_to_blog( $bid );
// ... your code for each blog ...
}
// Switch back to the current blog
switch_to_blog( $original_blog_id );
Aggiornare:
Se desideri recuperare post da diverse categorie per ciascun blog, puoi utilizzare ad esempio:
// Get current blog
$original_blog_id = get_current_blog_id();
// Setup a category slug for each blog id, you want to loop through - EDIT
$catslug_per_blog_id = array(
1 => 'video',
4 => 'news'
);
foreach( $catslug_per_blog_id as $bid => $catslug )
{
// Switch to the blog with the blog id $bid
switch_to_blog( $bid );
// ... your code for each blog ...
$myposts = get_posts(
array(
'category_name' => $catslug,
'posts_per_page' => 10,
)
);
// ... etc
}
// Switch back to the current blog
switch_to_blog( $original_blog_id );
Esempio:
Ecco un esempio che ti consente di utilizzare i tag modello (funziona sulla mia installazione multisito):
// Get current blog
$original_blog_id = get_current_blog_id();
// Setup a category for each blog id you want to loop through - EDIT
$catslug_per_blog_id = array(
1 => 'video',
4 => 'news'
);
foreach( $catslug_per_blog_id as $bid => $catslug )
{
//Switch to the blog with the blog id $bid
switch_to_blog( $bid );
// Get posts for each blog
$myposts = get_posts(
array(
'category_name' => $catslug,
'posts_per_page' => 2,
)
);
// Skip a blog if no posts are found
if( empty( $myposts ) )
continue;
// Loop for each blog
$li = '';
global $post;
foreach( $myposts as $post )
{
setup_postdata( $post );
$li .= the_title(
$before = sprintf( '<li><a href="%s">', esc_url( get_permalink() ) ),
$after = '</a></li>',
$echo = false
);
}
// Print for each blog
printf(
'<h2>%s (%s)</h2><ul>%s</ul>',
esc_html( get_bloginfo( 'name' ) ),
esc_html( $catslug ),
$li
);
}
// Switch back to the current blog
switch_to_blog( $original_blog_id );
wp_reset_postdata();
Ecco uno screenshot dimostrativo per il nostro esempio sopra con il sito 1 di nome Beethoven e il sito 4 di nome Bach :
PS: Grazie a @brasofilo che fornisce il link che chiarisce il mio fraintendimento del restore_current_blog()
;-)
PPS: Grazie a @ChristineCooper per aver condiviso il seguente commento:
Solo un avvertimento amichevole. Assicurati di non impostare l'ID del tuo blog originale su variabile $blog_id
- questo perché durante il switch_to_blog()
processo, $blog_id
verrà sostituito dalla funzione principale, il che significa che quando provi a tornare al blog originale, finirai con il passaggio all'ultimo uno che hai attraversato. Un po 'un enigma mentale. :)