wp_get_update_https_url()
Проверено на WordPress 6.9, обновлено Источник: WordPress Developer Resources.
Сигнатура
wp_get_update_https_url(): string
Описание
Этот URL можно переопределить, задав переменную окружения WP_UPDATE_HTTPS_URL или используя фильтр ‘wp_update_https_url’. Передавать пустую строку не разрешается — в этом случае будет использован URL по умолчанию. Кроме того, страницу, на которую ведёт этот URL, желательно локализовать на языке сайта.
Оригинал (английский)
This URL can be overridden by specifying an environment variable WP_UPDATE_HTTPS_URL or by using the ‘wp_update_https_url’ filter. 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.
Возвращаемое значение
string
Исходный код
wp-includes/functions.php:8691
function wp_get_update_https_url() {
$default_url = wp_get_default_update_https_url();
$update_url = $default_url;
if ( false !== getenv( 'WP_UPDATE_HTTPS_URL' ) ) {
$update_url = getenv( 'WP_UPDATE_HTTPS_URL' );
}
/**
* 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.
*
* @since 5.7.0
*
* @param string $update_url URL to learn more about updating HTTPS.
*/
$update_url = apply_filters( 'wp_update_https_url', $update_url );
if ( empty( $update_url ) ) {
$update_url = $default_url;
}
return $update_url;
}
История изменений
| Версия | Описание |
|---|---|
| 5.7.0 | Introduced. |

