wp_get_update_https_url(): string
- Since
- 5.7.0
- Source
wp-includes/functions.php:8691
Gets the URL to learn more about updating the site to use HTTPS.
Description
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.Return
string- URL to learn more about updating to HTTPS.
Hooks fired · 1
One hook fires while wp_get_update_https_url() runs, in this order:
- apply_filters( wp_update_https_url )filterline 8709 (+18 into the body)
Filters the URL to learn more about updating the HTTPS version the site is running on.
Uses · 2
- wp_get_default_update_https_url()Gets the default URL to learn more about updating the site to use HTTPS.
- apply_filters()Calls the callback functions that have been added to a filter hook.
Used by · 1
- WP_Site_Health::get_test_https_status()Tests if the site is serving content over HTTPS.
Source
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;}History
Introduced in 5.7.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 7.0.4 tag, from
src/wp-includes/functions.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it. - Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.