wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_schedule_update_user_counts › WordPress Function

Since6.0.0
已弃用n/a
wp_schedule_update_user_counts ( 没有参数 )
定义在:
文档:

Schedules a recurring recalculation of the total count of users.



源码

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

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