wp_is_php_version_acceptable filter-hookWP 5.1.1

Filters whether the active PHP version is considered acceptable by WordPress.

Returning false will trigger a PHP version warning to show up in the admin dashboard to administrators.

This filter is only run if the wordpress.org Serve Happy API considers the PHP version acceptable, ensuring that this filter can only make this check stricter, but not loosen it.

Usage

add_filter( 'wp_is_php_version_acceptable', 'wp_kama_is_php_version_acceptable_filter', 10, 2 );

/**
 * Function for `wp_is_php_version_acceptable` filter-hook.
 * 
 * @param bool   $is_acceptable Whether the PHP version is considered acceptable.
 * @param string $version       PHP version checked.
 *
 * @return bool
 */
function wp_kama_is_php_version_acceptable_filter( $is_acceptable, $version ){

	// filter...
	return $is_acceptable;
}
$is_acceptable(true|false)
Whether the PHP version is considered acceptable.
Default: true
$version(string)
PHP version checked.

Changelog

Since 5.1.1 Introduced.

Where the hook is called

wp_check_php_version()
wp_is_php_version_acceptable
wp-admin/includes/misc.php 1645
$response['is_acceptable'] = (bool) apply_filters( 'wp_is_php_version_acceptable', true, $version );

Where the hook is used in WordPress

Usage not found.