wpseek.com
A WordPress-centric search engine for devs and theme authors
update_blog_status › WordPress Function
Since
Deprecatedn/a
› update_blog_status ( $blog_id, $pref, $value, $deprecated = null )
Parameters: (4) |
|
Returns: |
|
Defined at: |
|
Codex: | |
Change Log: |
|
Updates a blog details field.
Related Functions: update_blog_details, get_blog_status, update_user_status, update_blog_option, update_blog_public
Source
function update_blog_status( $blog_id, $pref, $value, $deprecated = null ) {
global $wpdb;
if ( null !== $deprecated ) {
_deprecated_argument( __FUNCTION__, '3.1.0' );
}
$allowed_field_names = array( 'site_id', 'domain', 'path', 'registered', 'last_updated', 'public', 'archived', 'mature', 'spam', 'deleted', 'lang_id' );
if ( ! in_array( $pref, $allowed_field_names, true ) ) {
return $value;
}
$result = wp_update_site(
$blog_id,
array(
$pref => $value,
)
);
if ( is_wp_error( $result ) ) {
return false;
}
return $value;
}