wp_get_update_php_url(): string
- Since
- 5.1.0
- Source
wp-includes/functions.php:8420
Gets the URL to learn more about updating the PHP version the site is running on.
Description
This URL can be overridden by specifying an environment variable
WP_UPDATE_PHP_URL or by using the 'wp_update_php_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 PHP.
Hooks fired · 1
One hook fires while wp_get_update_php_url() runs, in this order:
- apply_filters( wp_update_php_url )filterline 8438 (+18 into the body)
Filters the URL to learn more about updating the PHP version the site is running on.
Uses · 2
- wp_get_default_update_php_url()Gets the default URL to learn more about updating the PHP version the site is running on.
- apply_filters()Calls the callback functions that have been added to a filter hook.
Used by · 15
- WP_Customize_Theme_Control::content_template()Render a JS template for theme display.
- WP_Plugin_Install_List_Table::display_rows()Generates the list table rows.
- WP_Plugins_List_Table::single_row()
- WP_Site_Health::get_test_php_version()Tests if the supplied PHP version is supported.
- customize_themes_print_templates()Prints JS templates for the theme-browsing UI in the Customizer.
- install_plugin_information()Displays plugin information in dialog box form.
- list_core_update()Lists available core updates.
- list_plugin_updates()Display the upgrade plugins form.
- list_theme_updates()Display the upgrade themes form.
- update_core()Upgrades the core of WordPress.
- validate_plugin_requirements()Validates the plugin requirements for WordPress version and PHP version.
- wp_dashboard_php_nag()Displays the PHP update nag.
Show all 15
- wp_get_update_php_annotation()Returns the default annotation for the web hosting altering the "Update PHP" page URL.
- wp_plugin_update_row()Displays update information for a plugin.
- wp_theme_update_row()Displays update information for a theme.
Source
function wp_get_update_php_url() { $default_url = wp_get_default_update_php_url(); $update_url = $default_url; if ( false !== getenv( 'WP_UPDATE_PHP_URL' ) ) { $update_url = getenv( 'WP_UPDATE_PHP_URL' ); } /** * Filters the URL to learn more about updating the PHP 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.1.0 * * @param string $update_url URL to learn more about updating PHP. */ $update_url = apply_filters( 'wp_update_php_url', $update_url ); if ( empty( $update_url ) ) { $update_url = $default_url; } return $update_url;}History
Introduced in 5.1.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 6.8.8 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.