使用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
暂无评论内容