Updates the details for a blog and the blogs table for a given blog ID.
Parameters
$blog_id
intrequired- Blog ID.
$details
arrayoptional- Array of details keyed by blogs table field names.
Default:
array()
Source
function update_blog_details( $blog_id, $details = array() ) {
if ( empty( $details ) ) {
return false;
}
if ( is_object( $details ) ) {
$details = get_object_vars( $details );
}
$site = wp_update_site( $blog_id, $details );
if ( is_wp_error( $site ) ) {
return false;
}
return true;
}
Changelog
Version | Description |
---|---|
MU (3.0.0) | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.