Skip to content

Instantly share code, notes, and snippets.

@IacopoC
Created February 21, 2020 13:27
Show Gist options
  • Save IacopoC/9079afd0b6e3a19d02e5e83255ba9674 to your computer and use it in GitHub Desktop.
Save IacopoC/9079afd0b6e3a19d02e5e83255ba9674 to your computer and use it in GitHub Desktop.
<?php
// Retrieve sites ID and path in WP multisite
$current_id = get_current_blog_id();
$args = array('site__not_in' => $current_id);
$network_sites = get_sites($args);
foreach($network_sites as $network_site) {
echo $network_site->blog_id;
echo $network_site->path;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment