update_blog_option()
update_blog_option( int $id, string $option, mixed $val…
update_blog_option( int $id, string $option, mixed $value, mixed $deprecated = null )
更新特定博客的选项。
Update an option for a particular blog.
目录锚点:#参数#源码#笔记
参数(Parameters)
参数 | 类型 | 说明 |
---|---|---|
$id | (int) | 博客id。 |
$option | (string) | 选项键。 |
$value | (mixed) | 选项值。 |
$deprecated | (mixed) | 未使用。 |
源码(Source)
/** * Update an option for a particular blog. * * @since MU * * @param int $id The blog id * @param string $option The option key * @param mixed $value The option value * @return bool True on success, false on failure. */ function update_blog_option( $id, $option, $value, $deprecated = null ) { $id = (int) $id; if ( null !== $deprecated ) _deprecated_argument( __FUNCTION__, '3.1' ); if ( get_current_blog_id() == $id ) return update_option( $option, $value ); switch_to_blog( $id ); $return = update_option( $option, $value ); restore_current_blog(); refresh_blog_details( $id ); return $return; }
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
MU (3.0.0) | wp-includes/ms-blogs.php | 12 | 6 |
笔记(Notes)
返回文件说明:
类别:WordPress 函数手册、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!