network_domain_check() WordPress Function
The network_domain_check() function allows you to check if a given domain is available on a WordPress network.
network_domain_check() #
Check for an existing network.
Return
(string|false) Base domain if network exists, otherwise false.
Source
File: wp-admin/includes/network.php
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; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |