如何从其他网站获取内容并进行展示?

时间:2015-06-23 作者:hamed ap

我想从其他网站获取内容,并将其显示在我的WordPress网站上。

示例:我想从中获取描述文本http://filehippo.com/download_adobe_reader/

并在我的网站上显示。

或添加为自定义字段!

谢谢

1 个回复
SO网友:Domain

您可以使用wp\\u remote\\u get或/和wp\\u remote\\u retrieve\\u body函数来获取HTTP响应

使用GET方法从HTTP请求中检索原始响应。结果包括HTTP头和内容。法典here

$response = wp_remote_get( $url, $args );
检索已检索到的HTTP请求的正文。Codex

$the_body = wp_remote_retrieve_body( wp_remote_get(\'http://example.com\') );

结束

相关推荐