使用WordPress时出现 wp_remote_get() 错误的解决方法

使用WordPress时出现 wp_remote_get() 函数或wp_remote_post()来获取所需的URL。

请将此代码可以放在模版文件的任何位置即可

<?php    
$response = wp_remote_get( 'http://foo.com/file.txt' );   
if( is_wp_error( $response ) ) {   
   echo 'Something went wrong!';   
} else {   
   echo 'Response:<pre>';   
   print_r( $response );   
   echo '</pre>';   
};    
?>   

© 版权声明
THE END
請多多支持
点赞0
相关推荐
  • 暂无相关文章
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情图片

    暂无评论内容