Skip to content
Search
Search
About Us
Our Brands
Our Family
Fresh & Finest by Our Family
Finest Reserve by Our Family
Spokesperson
Quality
Products
Recipes
Cookbooks
Recipe Categories
Blog
Our Family Cares
Where to Buy
About Us
Our Brands
Our Family
Fresh & Finest by Our Family
Finest Reserve by Our Family
Spokesperson
Quality
Products
Recipes
Cookbooks
Recipe Categories
Blog
Our Family Cares
Where to Buy
Spinach Dip
Creamy cool and savory flavor perfect for dipping toasted bread, veggies, and tortillas
// 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);