wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



wp_is_php_version_acceptable › WordPress Filter Hooks

Da5.1.1
Deprecaton/a
apply_filters( 'wp_is_php_version_acceptable', true, $version )
Parametri: (2)
  • (bool) $is_acceptable Whether the PHP version is considered acceptable. Default true.
    Richiesto:
  • (string) $version PHP version checked.
    Richiesto:
Definito a:
Codex:

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.





Sorgenti

$response['is_acceptable'] = (bool) apply_filters( 'wp_is_php_version_acceptable', true, $version );