update_blog_public( int $old_value, int $value )
Updates this blog’s ‘public’ setting in the global blogs table.
Description
Public blogs have a setting of 1, private blogs are 0.
Parameters
- $old_value
-
(Required) The old public value.
- $value
-
(Required) The new public value.
Source
File: wp-includes/ms-functions.php
function update_blog_public( $old_value, $value ) {
update_blog_status( get_current_blog_id(), 'public', (int) $value );
}
Changelog
Version | Description |
---|---|
MU (3.0.0) | Introduced. MU (3.0.0) |