Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created February 4, 2021 09:33
Show Gist options
  • Save wpmu-authors/5cb884f6a7e3c14b88284acc26fd3865 to your computer and use it in GitHub Desktop.
Save wpmu-authors/5cb884f6a7e3c14b88284acc26fd3865 to your computer and use it in GitHub Desktop.
wpmu_list_sites1.php
function wpmu_list_sites() {
$subsites = get_sites();
if ( ! empty ( $subsites ) ) {
echo '<ul class="subsites">';
foreach( $subsites as $subsite ) {
}
echo '</ul>';
}
}
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