domain_exists

函数


domain_exists ( $domain, $path, $network_id = 1 )
参数
  • (string)
    $domain
    The domain to be checked.
    Required:
  • (string)
    $path
    The path to be checked.
    Required:
  • (int)
    $network_id
    Optional. Network ID. Relevant only on multi-network installations.
    Required:
    Default: 1
返回值
  • (int|null) The site ID if the site name exists, null otherwise.
定义位置
  • wp-includes/ms-functions.php
    , line 1543
引入
弃用

Checks whether a site name is already taken.

The name is the site’s subdomain or the site’s subdirectory
path depending on the network settings.

Used during the new site registration process to ensure
that each site name is unique.

function domain_exists( $domain, $path, $network_id = 1 ) {
	$path   = trailingslashit( $path );
	$args   = array(
		'network_id'             => $network_id,
		'domain'                 => $domain,
		'path'                   => $path,
		'fields'                 => 'ids',
		'number'                 => 1,
		'update_site_meta_cache' => false,
	);
	$result = get_sites( $args );
	$result = array_shift( $result );

	/**
	 * Filters whether a site name is taken.
	 *
	 * The name is the site's subdomain or the site's subdirectory
	 * path depending on the network settings.
	 *
	 * @since 3.5.0
	 *
	 * @param int|null $result     The site ID if the site name exists, null otherwise.
	 * @param string   $domain     Domain to be checked.
	 * @param string   $path       Path to be checked.
	 * @param int      $network_id Network ID. Relevant only on multi-network installations.
	 */
	return apply_filters( 'domain_exists', $result, $domain, $path, $network_id );
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。