wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_schedule_update_network_counts › WordPress Function

Seit3.1.0
Veraltetn/v
wp_schedule_update_network_counts ( Keine Parameter )
Definiert in:
Codex:

Schedules update of the network-wide counts for the current network.



Quellcode

function wp_schedule_update_network_counts() {
	if ( ! is_main_site() ) {
		return;
	}

	if ( ! wp_next_scheduled( 'update_network_counts' ) && ! wp_installing() ) {
		wp_schedule_event( time(), 'twicedaily', 'update_network_counts' );
	}
}