Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kellenmace/99a0d1a3488ab800dc705ed22f1883b1 to your computer and use it in GitHub Desktop.
Save kellenmace/99a0d1a3488ab800dc705ed22f1883b1 to your computer and use it in GitHub Desktop.
Get the ID of the Main Site in a WordPress Multisite Network
<?php
/*
* Get the ID of the main site in a multisite network
*
* @return int The blog_id of the main site
*/
function km_get_main_site_id() {
global $current_site;
return $current_site->blog_id;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment