/* Add to your admin CSS or a
Search

Spices, Salts & Seasonings

Spices, Salts & Seasonings

Your cooking will transform from bland to grand with spices, salts, and seasoning blends from Finest Reserve. Expand your culinary palate and make your next meal impossible to forget.

Every flavor tells a story.

Recipes

Find delicious ways to use Finest Reserve by Our Family® spices, seasonings and salts.

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