Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save harimau99/7e49703141e701b5b642773e071ad4b5 to your computer and use it in GitHub Desktop.
Save harimau99/7e49703141e701b5b642773e071ad4b5 to your computer and use it in GitHub Desktop.
Get the Blog ID of the Main Site in a WordPress Multisite Network
<?php
/*
* Get the Blog ID of the main site in a multisite network.
*
* @return int The blog_id of the main site.
*/
function km_get_main_site_blog_id() {
return get_network()->site_id;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment