wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_blog_count › WordPress Function

Seit
Veraltetn/v
get_blog_count ( $network_id = null )
Parameter:
  • (int|null) $network_id ID of the network. Default is the current network.
    Erforderlich: Nein
    Standard: null
Gibt zurück:
  • (int) Number of active sites on the network.
Definiert in:
Codex:
Changelog:
  • 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.


Quellcode

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