get_user_count( int|null $network_id = null )

The number of active users in your installation.


Description Description

The count is cached and updated twice daily. This is not a live count.


Parameters Parameters

$network_id

(int|null) (Optional) ID of the network. Default is the current network.

Default value: null


Top ↑

Return Return

(int) Number of active users on the network.


Top ↑

Source Source

File: wp-includes/ms-functions.php

function get_user_count( $network_id = null ) {
	return get_network_option( $network_id, 'user_count' );
}

Top ↑

Changelog Changelog

Changelog
Version Description
MU (3.0.0) MU (3.0.0)
4.8.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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