wpdb::set_blog_id()
Sets blog ID.
Method of the class: wpdb{}
No Hooks.
Return
Int
. Previous blog ID.
Usage
global $wpdb; $wpdb->set_blog_id( $blog_id, $network_id );
- $blog_id(int) (required)
- -
- $network_id(int)
- Network ID.
Changelog
Since 3.0.0 | Introduced. |
wpdb::set_blog_id() wpdb::set blog id code WP 6.6.2
public function set_blog_id( $blog_id, $network_id = 0 ) { if ( ! empty( $network_id ) ) { $this->siteid = $network_id; } $old_blog_id = $this->blogid; $this->blogid = $blog_id; $this->prefix = $this->get_blog_prefix(); foreach ( $this->tables( 'blog' ) as $table => $prefixed_table ) { $this->$table = $prefixed_table; } foreach ( $this->tables( 'old' ) as $table => $prefixed_table ) { $this->$table = $prefixed_table; } return $old_blog_id; }