inpsyde / wpml2mlp

Convert posts from an existing WPML multilingual site via WXR Export/Import for MultilingualPress
https://wordpress.org/plugins/wpml-to-multilingualpress/
GNU General Public License v2.0
10 stars 6 forks source link

Import: Attachments #41

Open derpixler opened 8 years ago

derpixler commented 8 years ago

Implement attachment import.

Example on how to use wp_handle_sideload(): http://wordpress.stackexchange.com/a/36083/31323 (the answer shows the usage of media_handle_sideload() but the structure of the parameter is identical to the one for wp_handle_sideload().

namespace W2M\Import\Type;

interface ImportPostInterface {

    /**
     * ...
     */

    /**
     * @return string
     */
    public function remote_attachment_url();

}