is_main_blog()WP 3.0.0

Deprecated from version 3.0.0. It is no longer supported and can be removed in future releases. Use is_main_site() instead.

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

No Hooks.

Return

null. Nothing (null).

Usage

is_main_blog();

Notes

Changelog

Since 3.0.0 Introduced.
Deprecated since 3.0.0 Use is_main_site()

is_main_blog() code WP 6.4.3

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