Webcreations907 / WBC-Importer-extension

One click demo content importer extension for Reduxframework
GNU General Public License v2.0
66 stars 38 forks source link

Replacing wp_get_http with WP_Http #63

Open Delpierooo opened 8 years ago

Delpierooo commented 8 years ago

Hi,

when using this extension we get the following notice:

RECOMMENDED: wp_get_http() found in the file /extensions/wbc_importer/inc/importer/wordpress-importer.php. Deprecated since version 4.4. Use WP_Http instead. Line 905: $headers = wp_get_http( $url, $upload['file'] );

We have tried replacing it with $headers = WP_Http::get( $url, array( $upload['file'] ) ); but then it does not work.

Thanks!

simrandeep commented 8 years ago

Hi @Delpierooo Did you find any solution for it? I am also facing the same issue.