Admin_List::get_bigcommerce_product_thumbnail_value( $column_name,  $post_ID )

Summary

No summary available.

Parameters

$column_name

(Required)

$post_ID

(Required)


Source

File: src/BigCommerce/Post_Types/Product/Admin_List.php

	public function get_bigcommerce_product_thumbnail_value( $column_name, $post_ID ) {
		if ( $column_name == self::COLUMN_PRODUCT_THUMB ) {
			$product_thumbnail = get_the_post_thumbnail( $post_ID, Image_Sizes::BC_THUMB);
			echo $product_thumbnail ;
		}
	}

User Contributed Notes

You must log in before being able to contribute a note or feedback.