Created
February 4, 2021 09:33
-
-
Save wpmu-authors/5cb884f6a7e3c14b88284acc26fd3865 to your computer and use it in GitHub Desktop.
wpmu_list_sites1.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 '<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