wpseek.com
A WordPress-centric search engine for devs and theme authors



network_domain_check › WordPress Function

Since3.0.0
Deprecatedn/a
network_domain_check ( No parameters )
Returns:
  • (string|false) Base domain if network exists, otherwise false.
Defined at:
Codex:

Check for an existing network.



Source

function network_domain_check() {
	global $wpdb;

	$sql = $wpdb->prepare( 'SHOW TABLES LIKE %s', $wpdb->esc_like( $wpdb->site ) );
	if ( $wpdb->get_var( $sql ) ) {
		return $wpdb->get_var( "SELECT domain FROM $wpdb->site ORDER BY id ASC LIMIT 1" );
	}
	return false;
}