update_network_cache( array $networks )

Updates the network cache of given networks.


Description Description

Will add the networks in $networks to the cache. If network ID already exists in the network cache then it will not be updated. The network is added to the cache using the network group with the key using the ID of the networks.


Parameters Parameters

$networks

(array) (Required) Array of network row objects.


Top ↑

Source Source

File: wp-includes/ms-network.php

function update_network_cache( $networks ) {
	foreach ( (array) $networks as $network ) {
		wp_cache_add( $network->id, $network, 'networks' );
	}
}

Top ↑

Changelog Changelog

Changelog
Version Description
4.6.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.