This function has been deprecated. Use is_main_site() instead.

is_main_blog()

Deprecated functionality to determin if the current site is the main site.


Description

See also


Source

File: wp-includes/ms-deprecated.php

function is_main_blog() {
	_deprecated_function( __FUNCTION__, 'WP-3.0.0', 'is_main_site()' );
	return is_main_site();
}


Changelog

Changelog
Version Description
WP-3.0.0 Use is_main_site()
WP-MU Introduced. (3.0.0)