WC_Product::get_image()
Returns the main product image.
Method of the class: WC_Product{}
Hooks from the method
Return
String
.
Usage
$WC_Product = new WC_Product(); $WC_Product->get_image( $size, $attr, $placeholder );
- $size(string)
- .
Default: 'woocommerce_thumbnail' - $attr(array)
- Image attributes.
Default: array() - $placeholder(true|false)
- True to return $placeholder if no image is found, or false to return an empty string.
Default: true
WC_Product::get_image() WC Product::get image code WC 9.5.1
public function get_image( $size = 'woocommerce_thumbnail', $attr = array(), $placeholder = true ) { $image = ''; if ( $this->get_image_id() ) { $image = wp_get_attachment_image( $this->get_image_id(), $size, false, $attr ); } elseif ( $this->get_parent_id() ) { $parent_product = wc_get_product( $this->get_parent_id() ); if ( $parent_product ) { $image = $parent_product->get_image( $size, $attr, $placeholder ); } } if ( ! $image && $placeholder ) { $image = wc_placeholder_img( $size, $attr ); } return apply_filters( 'woocommerce_product_get_image', $image, $this, $size, $attr, $placeholder, $image ); }