wp_get_default_update_https_url()WP 5.7.0

Gets the default URL to learn more about updating the site to use HTTPS.

Do not use this function to retrieve this URL. Instead, use wp_get_update_https_url() when relying on the URL. This function does not allow modifying the returned URL, and is only used to compare the actually used URL with the default one.

Внутренняя функция — эта функция рассчитана на использование самим ядром. Не рекомендуется использовать эту функцию в своем коде.

Хуков нет.

Возвращает

Строку. Default URL to learn more about updating to HTTPS.

Использование

wp_get_default_update_https_url();

Список изменений

С версии 5.7.0 Введена.

Код wp_get_default_update_https_url() WP 6.5.2

function wp_get_default_update_https_url() {
	/* translators: Documentation explaining HTTPS and why it should be used. */
	return __( 'https://wordpress.org/documentation/article/why-should-i-use-https/' );
}