Search

Recipes

Smoked Bacon, Leek & Herb Chèvre Frittata

5 Ingredient Swedish Meatballs

5 Ingredient Overnight Shredded Wheat

Grilled Caprese Dip

peach pie picture

Peach Lattice Pie

Cheesy Chicken Enchiladas

Cornflake-Crusted Fish Sticks

Grilled Cilantro-Lime Fish Tacos

Roast Beef with Rosemary, Roasted Garlic & Red Wine Sauce

Blue Cheese & Grape Crostini

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