wpseek.com
A WordPress-centric search engine for devs and theme authors



get_blog_count › WordPress Function

Since
Deprecatedn/a
get_blog_count ( $network_id = null )
Parameters:
  • (int|null) $network_id ID of the network. Default is the current network.
    Required: No
    Default: null
Returns:
  • (int) Number of active sites on the network.
Defined at:
Codex:
Change Log:
  • 3.7.0
  • 4.8.0

Gets the number of active sites on the installation.

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


Source

function get_blog_count( $network_id = null ) {
	return get_network_option( $network_id, 'blog_count' );
}