WordPress Version: 6.2
/**
* Updates an option for a particular blog.
*
* @since MU (3.0.0)
*
* @param int $id The blog ID.
* @param string $option The option key.
* @param mixed $value The option value.
* @param mixed $deprecated Not used.
* @return bool True if the value was updated, false otherwise.
*/
function update_blog_option($id, $option, $value, $deprecated = null)
{
$id = (int) $id;
if (null !== $deprecated) {
_deprecated_argument(__FUNCTION__, '3.1.0');
}
if (get_current_blog_id() == $id) {
return update_option($option, $value);
}
switch_to_blog($id);
$return = update_option($option, $value);
restore_current_blog();
return $return;
}