includes/class-wc-product-variation.php 1 location
|
@@ 350-352 (lines=3) @@
|
347 |
|
$image_id = get_post_thumbnail_id( $this->variation_id ); |
348 |
|
} elseif ( has_post_thumbnail( $this->id ) ) { |
349 |
|
$image_id = get_post_thumbnail_id( $this->id ); |
350 |
|
} elseif ( ( $parent_id = wp_get_post_parent_id( $this->id ) ) && has_post_thumbnail( $parent_id ) ) { |
351 |
|
$image_id = get_post_thumbnail_id( $parent_id ); |
352 |
|
} else { |
353 |
|
$image_id = 0; |
354 |
|
} |
355 |
|
return $image_id; |
includes/abstracts/abstract-wc-product.php 1 location
|
@@ 1540-1542 (lines=3) @@
|
1537 |
|
|
1538 |
|
if ( has_post_thumbnail( $this->id ) ) { |
1539 |
|
$image_id = get_post_thumbnail_id( $this->id ); |
1540 |
|
} elseif ( ( $parent_id = wp_get_post_parent_id( $this->id ) ) && has_post_thumbnail( $parent_id ) ) { |
1541 |
|
$image_id = get_post_thumbnail_id( $parent_id ); |
1542 |
|
} else { |
1543 |
|
$image_id = 0; |
1544 |
|
} |
1545 |
|
|