Created
February 21, 2020 13:27
-
-
Save IacopoC/9079afd0b6e3a19d02e5e83255ba9674 to your computer and use it in GitHub Desktop.
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
<?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