Filters the URL to learn more about updating the HTTPS version the site is running on. Providing an empty string is not allowed and will result in the default URL being used. Furthermore the page the URL links to should preferably be localized in the site language.
$update_url
Sortie :
@param string $update_url URL to learn more about updating HTTPS.
// Modifier la valeur avec le filtre 'wp_update_https_url'
add_filter('wp_update_https_url', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($update_url) {
// Modifier la valeur
return $update_url;
}
Chargement des actualités...