Created
February 4, 2021 09:51
-
-
Save wpmu-authors/44e5c2891a3854fdba8039c38c3f769b to your computer and use it in GitHub Desktop.
wpmu_list_sites3.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function wpmu_list_sites() { | |
$subsites = get_sites(); | |
if ( ! empty ( $subsites ) ) { | |
echo '<section class="subsites-container">'; | |
echo '<ul class="subsites">'; | |
foreach( $subsites as $subsite ) { | |
$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>'; | |
} | |
echo '</ul>'; | |
echo '</section>'; | |
} | |
} | |
add_action( 'wpmu_before_header', 'wpmu_list_sites' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment