Use post-thumbnail size to avoid srcsets

Closes #9795
This commit is contained in:
Mike Jolley 2015-12-09 11:36:09 +00:00
parent 496eb3385e
commit cc68cd48c5
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ class WC_Admin_Post_Types {
switch ( $column ) {
case 'thumb' :
echo '<a href="' . get_edit_post_link( $post->ID ) . '">' . $the_product->get_image( 'thumbnail' ) . '</a>';
echo '<a href="' . get_edit_post_link( $post->ID ) . '">' . $the_product->get_image( 'post-thumbnail' ) . '</a>';
break;
case 'name' :
$edit_link = get_edit_post_link( $post->ID );