wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_is_php_version_acceptable › WordPress过滤钩子

Since5.1.1
已弃用n/a
apply_filters( 'wp_is_php_version_acceptable', true, $version )
参数: (2)
  • (bool) $is_acceptable Whether the PHP version is considered acceptable. Default true.
    Required: Yes
  • (string) $version PHP version checked.
    Required: Yes
定义在:
文档:

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.





源码

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