wpseek.com
				Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
			clean_network_cache › WordPress Function
Seit4.6.0
Veraltetn/v
› clean_network_cache ( $ids )
| Parameter: | 
 | 
| Definiert in: | 
 | 
| Codex: | 
Removes a network from the object cache.
Ähnliche Funktionen: clean_term_cache, clean_user_cache, update_network_cache, clean_bookmark_cache, clean_category_cache
	Quellcode
function clean_network_cache( $ids ) {
	global $_wp_suspend_cache_invalidation;
	if ( ! empty( $_wp_suspend_cache_invalidation ) ) {
		return;
	}
	$network_ids = (array) $ids;
	wp_cache_delete_multiple( $network_ids, 'networks' );
	foreach ( $network_ids as $id ) {
		/**
		 * Fires immediately after a network has been removed from the object cache.
		 *
		 * @since 4.6.0
		 *
		 * @param int $id Network ID.
		 */
		do_action( 'clean_network_cache', $id );
	}
	wp_cache_set_last_changed( 'networks' );
}