Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created February 4, 2021 09:43
Show Gist options
  • Save wpmu-authors/69dd5af12838a835e06850445df24d29 to your computer and use it in GitHub Desktop.
Save wpmu-authors/69dd5af12838a835e06850445df24d29 to your computer and use it in GitHub Desktop.
foreach-inner.php
$subsite_id = get_object_vars( $subsite )["blog_id"];
$subsite_name = get_blog_details( $subsite_id )->blogname;
$subsite_link = get_blog_details( $subsite_id )->siteurl;
echo '<li class="site-' . $subsite_id . '"><a href="' . $subsite_link . '">' . $subsite_name . '</a></li>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment