wp_get_network

函数
wp_get_network ( $network )
参数
  • (object|int) $network The network's database row or ID.
    Required:
返回值
  • (WP_Network|false) Object containing network information if found, false if not.
相关
  • get_network()
定义位置
相关方法
get_networkget_networkswp_is_large_networkwp_generatorupgrade_network
引入
3.9.0
弃用
4.7.0

wp_get_network: 这个函数检索关于一个多站点网络的数据。它接受一个网络ID或一个网络对象作为参数,并返回一个关于该网络的数据数组。

检索一个包含所请求网络信息的对象。

function wp_get_network( $network ) {
	_deprecated_function( __FUNCTION__, '4.7.0', 'get_network()' );

	$network = get_network( $network );
	if ( null === $network ) {
		return false;
	}

	return $network;
}

常见问题

FAQs
查看更多 >