wp_maybe_update_user_counts

函式
wp_maybe_update_user_counts ( $network_id = null )
引數
  • (int|null) $network_id ID of the network. Defaults to the current network.
    Required:
    Default: null
返回值
  • (bool) Whether the update was successful.
定義位置
相關方法
wp_update_user_countswp_maybe_update_network_user_countswp_schedule_update_user_countswp_maybe_update_network_site_countswp_update_term_count
引入
6.0.0
棄用
-

wp_maybe_update_user_counts: 這個函式用來更新一個網站上的使用者數。它檢查計數是否是最新的,如果不是,它就更新計數。

如果啟用了實時使用者計數,則更新網站上的使用者總計數。

function wp_maybe_update_user_counts( $network_id = null ) {
	if ( ! is_multisite() && null !== $network_id ) {
		_doing_it_wrong(
			__FUNCTION__,
			sprintf(
				/* translators: %s: $network_id */
				__( 'Unable to pass %s if not using multisite.' ),
				'<code>$network_id</code>'
			),
			'6.0.0'
		);
	}

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

	return wp_update_user_counts( $network_id );
}

常見問題

FAQs
檢視更多 >