Forums
Home / Plugin: Import external attachments / Custom Post Type Support
(@ollylama)
7 years, 5 months ago
Can you please add custom post type support for this plugin?
(@paulovsky)
7 years ago
@ollylama edit the file import-internal-attachments.php and find all the lines like the one below:
import-internal-attachments.php
$posts = get_posts( array( 'numberposts'=>-1, 'post_type' => array( 'post', 'page' ) ) );
change them to:
$posts = get_posts( array( 'numberposts'=>-1, 'post_type' => array( 'post', 'page', 'YOUR_POST_TYPE' ) ) );
this is only a fix. If the plugin gets updated you might have to do this again.