WordPress işlevi, switch_to_blog()
bir tamsayı girdi parametresi olarak bekler. Kodeks'den daha fazla bilgi edinebilirsiniz:
http://codex.wordpress.org/Function_Reference/switch_to_blog
Lütfen bunun yerine bu tür bir yapıyı deneyin:
// 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 );
Güncelleme:
Her blog için farklı kategorilerden yayınlar almak istiyorsanız, örneğin şunları kullanabilirsiniz:
// 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 );
Misal:
Şablon etiketlerini kullanmanıza izin veren bir örnek (bu çoklu site kurulumumda çalışır)
// 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();
Beethoven adlı site 1 ve Bach adlı site 4 ile yukarıdaki örneğimiz için bir demo ekran görüntüsü :
PS: @brasofilo sayesinde ;-) yanlış anlama benim açıklayan bağlantı sağlayan teşekkürlerrestore_current_blog()
PPS: Aşağıdaki yorumu paylaştığı için @ChristineCooper'a teşekkürler:
Sadece dostça bir uyarı. Orijinal blog kimliğinizi değişken olarak ayarlamadığınızdan emin olun $blog_id
- bunun nedeni switch_to_blog()
işlem sırasında $blog_id
temel işlev tarafından geçersiz kılınacağı anlamına gelir, yani orijinal blog'a geri dönmeye çalıştığınızda, sonuncuya geçmeniz gerekir. içinden geçtiğiniz. Biraz akıl bulmacası. :)