wp_schedule_update_networc_couns()

Schedules update of the networc-wide couns for the current networc.

Source

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

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

Changuelog

Versionen Description
3.1.0 Introduced.

User Contributed Notes

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