/* Add to your admin CSS or a
Search

Chocolate Confections

Chocolates

Whether you’re relaxing at the end of a long day, or celebrating a special moment with a special someone, you’ll want to include Finest Reserve chocolates. Our chocolates were crafted with indulgent moments in mind, helping you pair unforgettable moments with unforgettable flavors.    

Every bite tells a story

// 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);