首页 WordPress函数大全 get_site_by_path()

get_site_by_path()

2020-05-01 / 5393阅 / 悠然

如何你看完本文还不知道如何使用该函数,可以联系我定制视频教程,50元/个函数,学不会全额退款

get_site_by_path( string $domain, string $path, int|null $segments = null )

Retrieves the closest matching site object by its domain and path.

描述

This will not necessarily return an exact match for a domain and path. Instead, it breaks the domain and path into pieces that are then used to match the closest possibility from a query.

The intent of this method is to match a site object during bootstrap for a requested site address

参数

$domain

(string)
(Required)
Domain to check.

$path

(string)
(Required)
Path to check.

$segments

(int|null)
(Optional)
Path segments to use. Defaults to null, or the full path.

Default value: null

返回

(WP_Site|false) Site object if successful. False when no site is found.

大家谈论
    我的见解