Save postmeta attachment image reference on import of products via API rest.

This commit is contained in:
victorfreitas 2017-10-03 10:17:09 -03:00
parent b997c5673c
commit c72c2f06b8
1 changed files with 5 additions and 0 deletions

View File

@ -1078,6 +1078,11 @@ class WC_REST_Products_Controller extends WC_REST_Legacy_Products_Controller {
if ( ! empty( $image['name'] ) ) {
wp_update_post( array( 'ID' => $attachment_id, 'post_title' => $image['name'] ) );
}
// Set for future reference
if ( ! empty( $image['src'] ) ) {
update_post_meta( $attachment_id, '_wc_attachment_source', esc_url_raw( $image['src'] ) );
}
}
$product->set_gallery_image_ids( $gallery );