Filters whether the authentication check originated at the same domain.
$same_domain
Sortie :
@param bool $same_domain Whether the authentication check originated at the same domain.
// Modifier la valeur avec le filtre 'wp_auth_check_same_domain'
add_filter('wp_auth_check_same_domain', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($same_domain) {
// Modifier la valeur
return $same_domain;
}
Chargement des actualités...