pre_get_network_by_path

FILTER wp-includes\class-wp-network.php (ligne 417) github
Determines a network 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 network can be found at the requested domain and path. Otherwise, return an object from wp_get_network().

Paramètres

Entrée :
null, $domain, $path, $segments, $paths
Sortie :
@param null|false|WP_Network $network  Network 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    Array of paths to search for, based on `$path` and `$segments`.

Utilisation

// Modifier la valeur avec le filtre 'pre_get_network_by_path'
add_filter('pre_get_network_by_path', 'ma_fonction_filtre', 10, 1);

function ma_fonction_filtre(null) {
    // Modifier la valeur
    return null;
}

Actualités

Chargement des actualités...