Birden fazla blog üzerinden çalıştırmak istiyorsanız, önceki blog'u her defasında geri yüklemenize gerek yoktur. Büyüyen tek şey $GLOBALS['_wp_switched_stack']
- blog kimliğine sahip bir dizi, endişelenecek bir şey yok.
Ancak aklınızda bulundurun, ikinci anahtardan sonra artık restore_current_blog()
çalışmaz (!!!) , Çünkü önceki blogu kullanır - ki o zaman ilk blog değildir . Öyleyse ilk blog kimliğini sakla ve ara…
switch_to_blog( $first_blog_id );
unset ( $GLOBALS['_wp_switched_stack'] );
$GLOBALS['switched'] = false;
… Bittiğinde yerine restore_current_blog()
. Genel değişkenler sıfırlanmalıdır, yoksa @ user42826 tarafından belirtilen sorunlara rastlarsınız.
Performansın etkisi çok büyük. Yerel bir kurulumda 12 siteyle bazı testler yaptım:
$sites = wp_get_sites();
print '<pre>' . count( $sites ) . " sites\n";
timer_start();
print 'With restore_current_blog(): ';
foreach ( $sites as $site ) {
switch_to_blog( $site[ 'blog_id' ] );
restore_current_blog();
}
timer_stop( 1, 9 );
print "\nWithout restore_current_blog(): ";
timer_start();
$current_site = get_current_blog_id();
foreach ( $sites as $site ) {
switch_to_blog( $site[ 'blog_id' ] );
}
switch_to_blog( $current_site );
$GLOBALS['_wp_switched_stack'] = array();
$GLOBALS['switched'] = FALSE;
timer_stop( 1, 9 );
print '</pre>';
Sonuç:
12 sites
With restore_current_blog(): 0.010648012
Without restore_current_blog(): 0.005203962
restore_current_blog()
Her anahtardan sonra kullanılması , sadece anahtarlama için gereken süreyi iki katına çıkarır.