Warning: 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

Top ↑

See also


Top ↑

Source

File: wp-includes/ms-deprecated.php. View all references

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


Top ↑

Changelog

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

Top ↑

User Contributed Notes

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