wp_direct_update_https_url

FILTER wp-includes\functions.php (ligne 8707) github
Filters the URL for directly updating the PHP version the site is running on from the host.

Paramètres

Entrée :
$direct_update_url
Sortie :
@param string $direct_update_url URL for directly updating PHP.

Utilisation

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

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

Actualités

Chargement des actualités...