Search

Summer

Bacon-Blueberry Ricotta Crostini

Air Fryer Sweet Potato Skins

Grilled Sheet-Pan Umami Salmon & Veggies

Everything Bagel-Seasoned Sushi Rolls

Grilled Crudités with Herbed Feta Dip

Banana-Cashew Trail Mix

Sweet & Spicy Chicken Kabobs

Tropical Tajín® Smoothie Bowl

Kimchi & Vegetable Noodle Bowls

Craft Beer Brats with Red Cabbage-Apple Slaw & Bacon

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