WP\\u HTTP\\u Proxy()添加了对HTTP API的代理支持。如果您还不知道,可以询问相关信息&;将其放入wp配置。php
define(\'WP_PROXY_HOST\', \'192.168.x.x\');
define(\'WP_PROXY_PORT\', \'8080\');
define(\'WP_PROXY_BYPASS_HOSTS\', \'localhost, www.example.com, *.wordpress.org\');
来源:
https://developer.wordpress.org/reference/classes/wp_http_proxy/如果用户名(&A);密码是必需的,那么也添加这些行
define(\'WP_PROXY_USERNAME\', \'_username_\');
define(\'WP_PROXY_PASSWORD\', \'xxxxxxxxx\');