core_version_check_query_args

过滤钩子
apply_filters( 'core_version_check_query_args', $query )
参数
  • (array) $query { Version check query arguments. @type string $version WordPress version number. @type string $php PHP version number. @type string $locale The locale to retrieve updates for. @type string $mysql MySQL version number. @type string $local_package The value of the $wp_local_package global, when set. @type int $blogs Number of sites on this WordPress installation. @type int $users Number of users on this WordPress installation. @type int $multisite_enabled Whether this WordPress installation uses Multisite. @type int $initial_db_version Database version of WordPress at time of installation. }
    Required:
定义位置
相关勾子
core_version_check_localewp_link_query_argscomments_template_query_argswp_save_post_revision_check_for_changescomments_list_table_query_args
相关方法
wp_version_checkremove_query_argwp_edit_attachments_query_varswp_removable_query_argsrest_cookie_check_errorsrest_parse_request_arg
引入
4.9.0
弃用
-

core_version_check_query_args是一个过滤钩子,允许你在检查WordPress核心的更新时修改传递给服务器的查询参数。你可以使用这个钩子来添加或删除查询参数,如locale,以定制版本检查过程。

过滤作为核心版本检查的一部分而发送的查询参数。

警告:更改此数据可能导致您的网站无法接收安全更新。请格外小心。

$query = apply_filters( 'core_version_check_query_args', $query );

常见问题

FAQs
查看更多 >