wp_schedule_update_network_counts

函数
wp_schedule_update_network_counts ( No parameters )

wp_schedule_update_network_counts: 这是一个WordPress函数,用来安排更新WordPress多站点网络上的站点和用户的网络计数。它允许你指定一个时间间隔和一个回调函数,该函数将在该时间间隔执行,以更新网络计数。例如,你可以使用这个函数来安排每周运行一次更新。

安排更新当前网络的全网计数。

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' );
	}
}

常见问题

FAQs
查看更多 >