get_network

函数
get_network ( $network = null )
参数
  • (WP_Network|int|null) $network Optional. Network to retrieve. Default is the current network.
    Required:
    Default: null
返回值
  • (WP_Network|null) The network object or null if not found.
定义位置
相关方法
get_networkswp_get_networkupgrade_networkget_network_optionget_ancestors
引入
4.6.0
弃用
-

get_network函数是一个WordPress函数,用于检索给定网络ID或当前网络的网络数据。它可以用来检索网络数据,如网络名称、网络管理员电子邮件和网络域名。

给定一个网络ID或网络对象,检索网络数据。

网络数据将被缓存,并在通过一个过滤器后返回。如果提供的网络是空的,将使用当前的网络全局。

function get_network( $network = null ) {
	global $current_site;
	if ( empty( $network ) && isset( $current_site ) ) {
		$network = $current_site;
	}

	if ( $network instanceof WP_Network ) {
		$_network = $network;
	} elseif ( is_object( $network ) ) {
		$_network = new WP_Network( $network );
	} else {
		$_network = WP_Network::get_instance( $network );
	}

	if ( ! $_network ) {
		return null;
	}

	/**
	 * Fires after a network is retrieved.
	 *
	 * @since 4.6.0
	 *
	 * @param WP_Network $_network Network data.
	 */
	$_network = apply_filters( 'get_network', $_network );

	return $_network;
}

常见问题

FAQs
查看更多 >