Importing images question
-
Hi There,
I am using WP All Import to bring in all of the XML data into the wp-listings plug in into the various custom fields.
The only field that is not working is the additional images. I can get the featured image imported without a problem.
All the additional images have been added into the media library during the import of the XML feed but are not attached to the property post.
I have tried using the following code to attach the images to each property listing but it is only giving be the image attachment id in the photos tab and not showing the images.add_action(‘pmxi_gallery_image’, ‘my_gallery_image’, 10, 3);
function my_gallery_image($pid, $attid, $image_filepath){
add_post_meta( $pid, “_listing_gallery”, $attid, false );
}Can you tell me how wp-listing handles the images for each property.
Many thanks in advance.Stuart
- The topic ‘Importing images question’ is closed to new replies.