Determines a site by its domain and path. This allows one to short-circuit the default logic, perhaps by replacing it with a routine that is more optimal for your setup. Return null to avoid the short-circuit. Return false if no site can be found at the requested domain and path. Otherwise, return a site object.
null, $domain, $path, $segments, $paths
Sortie :
@param null|false|WP_Site $site Site value to return by path. Default null @param string $domain The requested domain. @param string $path The requested path, in full. @param int|null $segments The suggested number of paths to consult. @param string[] $paths The paths to search for, based on $path and $segments.
// Modifier la valeur avec le filtre 'pre_get_site_by_path'
add_filter('pre_get_site_by_path', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre(null) {
// Modifier la valeur
return null;
}
Chargement des actualités...