Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Return only public sites

// WP_Site_Query arguments
$args = array (
	'site__not_in'      => array( '1' ),
	'public'            => '1',
	'order'             => 'ASC',
	'orderby'           => 'id',
);

// The Site Query
$site_query = new WP_Site_Query( $args );