/* Add to your admin CSS or a
Search

Heat & Eat Meals in the Deli

Your busy day deserves delicious! Introducing our new heat & eat, chef-inspired meals ready to serve a family of four, no prep required. Providing you the flexibility to enjoy more family meals together each week. Eat smart & be well together.

Family Meals in the Deli!

// Add thumbnail column to product admin list add_filter('manage_product_posts_columns', function($columns) { $new = ['cb' => $columns['cb'], 'thumbnail' => 'Image']; return array_merge($new, $columns); }); add_action('manage_product_posts_custom_column', function($column, $post_id) { if ($column === 'thumbnail') { echo get_the_post_thumbnail($post_id, [60, 60]); } }, 10, 2);