ฟังก์ชั่น WordPress switch_to_blog()
คาดว่าจะเป็นจำนวนเต็มเป็นพารามิเตอร์ป้อนเข้า คุณสามารถอ่านเพิ่มเติมเกี่ยวกับเรื่องนี้ได้ใน Codex:
http://codex.wordpress.org/Function_Reference/switch_to_blog
โปรดลองโครงสร้างแบบนี้แทน:
// 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 );
ปรับปรุง:
หากคุณต้องการดึงโพสต์จากหมวดหมู่ที่แตกต่างกันสำหรับแต่ละบล็อกคุณสามารถใช้ตัวอย่างเช่น:
// 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 );
ตัวอย่าง:
นี่คือตัวอย่างที่ช่วยให้คุณใช้เทมเพลตแท็ก (ใช้ได้กับการติดตั้งแบบหลายไซต์ของฉัน):
// 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();
นี่คือภาพตัวอย่างสำหรับตัวอย่างข้างต้นของเราโดยมีไซต์ 1 ชื่อเบโธเฟนและไซต์ 4 ชื่อบาค :
PS: ขอบคุณ @brasofilo ที่ให้ลิงค์ที่ชี้แจงความเข้าใจผิดเกี่ยวกับrestore_current_blog()
;-)
PPS: ขอบคุณ @ChristineCooper สำหรับการแบ่งปันความคิดเห็นต่อไปนี้:
เพียงแค่คำเตือนที่เป็นมิตร ตรวจสอบให้แน่ใจว่าไม่ได้ตั้งค่า ID บล็อกดั้งเดิมของคุณเป็นตัวแปร$blog_id
- เนื่องจากในระหว่างswitch_to_blog()
กระบวนการ$blog_id
จะถูกแทนที่ด้วยฟังก์ชันหลักซึ่งหมายความว่าเมื่อคุณพยายามเปลี่ยนกลับไปเป็นบล็อกดั้งเดิมคุณจะจบลงด้วยการเปลี่ยนไปใช้บล็อกสุดท้าย อันที่คุณลูปผ่าน เป็นปริศนาจิ๊กซอว์เล็กน้อย :)