目前,我有以下php代码片段来获取一些HTML并将其呈现在我的主题(挤压主题)中
<?php $response = wp_remote_get( \'http://www.toucan-it.co.uk/wp-content/themes/squash/index5.html\' );
print $response [\'body\']; ?>
我试图请求的文件位于以下URL
http://www.toucan-it.co.uk/wp-content/themes/squash/index5.html
问题
问题是在尝试检索“index5”时。html“通过web浏览器生成文件的输出,但使用绝对或相对路径通过“wp\\u remote\\u get”调用时,会显示错误。
在对$response进行var\\u转储时,可以在主页上的滑块下方看到输出。通过查看下面的圆圈,可以看到php文件在错误代码下应该呈现什么(http://www.toucan-it.co.uk)
object(WP_Error)#337 (2) { ["errors"]=> array(1) { ["http_request_failed"]=> array(1) { [0]=> string(24) "couldn\'t connect to host" } } ["error_data"]=> array(0) { } }