update_blog_option
函数
update_blog_option ( $id, $option, $value, $deprecated = null )
- 参数
-
-
(int)
$id
The blog ID.- Required: 是
-
(string)
$option
The option key.- Required: 是
-
(mixed)
$value
The option value.- Required: 是
-
(mixed)
$deprecated
Not used.- Required: 否
- Default: null
-
(int)
- 返回值
-
- (bool) True if the value was updated, false otherwise.
- 定义位置
-
-
wp-includes/ms-blogs.php
, line 459
-
wp-includes/ms-blogs.php
- 引入
- –
- 弃用
- –
Update an option for a particular blog.
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; }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。