is_user_option_local

函数
is_user_option_local ( $key, $user_id = 0, $blog_id = 0 )
参数
  • (string) $key
    Required:
  • (int) $user_id Optional. Defaults to current user.
    Required:
  • (int) $blog_id Optional. Defaults to current blog.
    Required:
返回值
  • (bool)
定义位置
相关方法
get_user_optionget_user_localeupdate_user_optiondelete_user_optionadd_user_to_blog
引入
-
弃用
4.9.0

is_user_option_local – 这个函数检查一个用户选项是否使用了一个特定站点或特定网络的值。如果$global参数设置为true,该函数检查该选项是否使用了网络值,否则,它检查特定站点的值。

检查一个usermeta键是否与当前博客有关。

function is_user_option_local( $key, $user_id = 0, $blog_id = 0 ) {
	global $wpdb;

	_deprecated_function( __FUNCTION__, '4.9.0' );

	$current_user = wp_get_current_user();
	if ( $blog_id == 0 ) {
		$blog_id = get_current_blog_id();
	}
	$local_key = $wpdb->get_blog_prefix( $blog_id ) . $key;

	return isset( $current_user->$local_key );
}

常见问题

FAQs
查看更多 >