Skip to content

Instantly share code, notes, and snippets.

@bappi-d-great
Created July 26, 2014 00:12
Show Gist options
  • Save bappi-d-great/142808684afcf1c98472 to your computer and use it in GitHub Desktop.
Save bappi-d-great/142808684afcf1c98472 to your computer and use it in GitHub Desktop.
WPMU Domain Mapping - Get all domain as an array
<?php
function get_all_domains(){
return $wpdb->get_results( 'SELECT Distinct domain from wp_domain_mapping', 'ARRAY_A' );
}
// $domains = get_all_domains() should return array of domains
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment