wp_maybe_update_network_user_counts

函数
wp_maybe_update_network_user_counts ( $network_id = null )
参数
  • (int|null) $network_id ID of the network. Default is the current network.
    Required:
    Default: null
定义位置
相关方法
wp_maybe_update_network_site_countswp_update_network_user_countswp_maybe_update_user_countswp_update_network_site_countswp_maybe_update_network_site_counts_on_update
引入
3.7.0
弃用
-

wp_maybe_update_network_user_counts: 这个函数用于更新网络中的用户数。它检查计数是否是最新的,如果不是,它就更新计数。

更新全网用户数。

如果通过{@see ‘enable_network_counts’}过滤器启用,当一个用户被创建或其状态被更新时,更新网络上的用户数。

function wp_maybe_update_network_user_counts( $network_id = null ) {
	$is_small_network = ! wp_is_large_network( 'users', $network_id );

	/** This filter is documented in wp-includes/ms-functions.php */
	if ( ! apply_filters( 'enable_live_network_counts', $is_small_network, 'users' ) ) {
		return;
	}

	wp_update_network_user_counts( $network_id );
}

常见问题

FAQs
查看更多 >