Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kellenmace/d0039e6913a28e1b95f29501591e0147 to your computer and use it in GitHub Desktop.
Save kellenmace/d0039e6913a28e1b95f29501591e0147 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