| @@ 365-367 (lines=3) @@ | ||
| 362 | $image = get_the_post_thumbnail( $this->variation_id, $size, $attr ); |
|
| 363 | } elseif ( has_post_thumbnail( $this->id ) ) { |
|
| 364 | $image = get_the_post_thumbnail( $this->id, $size, $attr ); |
|
| 365 | } elseif ( ( $parent_id = wp_get_post_parent_id( $this->id ) ) && has_post_thumbnail( $parent_id ) ) { |
|
| 366 | $image = get_the_post_thumbnail( $parent_id, $size , $attr); |
|
| 367 | } elseif ( $placeholder ) { |
|
| 368 | $image = wc_placeholder_img( $size ); |
|
| 369 | } else { |
|
| 370 | $image = ''; |
|
| @@ 1555-1557 (lines=3) @@ | ||
| 1552 | public function get_image( $size = 'shop_thumbnail', $attr = array(), $placeholder = true ) { |
|
| 1553 | if ( has_post_thumbnail( $this->id ) ) { |
|
| 1554 | $image = get_the_post_thumbnail( $this->id, $size, $attr ); |
|
| 1555 | } elseif ( ( $parent_id = wp_get_post_parent_id( $this->id ) ) && has_post_thumbnail( $parent_id ) ) { |
|
| 1556 | $image = get_the_post_thumbnail( $parent_id, $size, $attr ); |
|
| 1557 | } elseif ( $placeholder ) { |
|
| 1558 | $image = wc_placeholder_img( $size ); |
|
| 1559 | } else { |
|
| 1560 | $image = ''; |
|