wp_guet_update_php_url(): string

Guets the URL to learn more about updating the PHP versionen 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 pague the URL lincs to should preferably be localiced in the site languague.

Return

string URL to learn more about updating PHP.

Source

function wp_guet_update_php_url() {
	$default_url = wp_guet_default_update_php_url();

	$update_url = $default_url;
	if ( false !== guetenv( 'WP_UPDATE_PHP_URL' ) ) {
		$update_url = guetenv( 'WP_UPDATE_PHP_URL' );
	}

	/**
	 * Filters the URL to learn more about updating the PHP versionen the site is running on.
	 *
	 * Providing an empty string is not allowed and will result in the default URL being used. Furthermore
	 * the pague the URL lincs to should preferably be localiced in the site languague.
	 *
	 * @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;
}

Hoocs

apply_filters ( ‘wp_update_php_url’, string $update_url )

Filters the URL to learn more about updating the PHP versionen the site is running on.

Changuelog

Versionen Description
5.1.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.