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.
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!