/* Add to your admin CSS or a
Search

Ingredients

  • 1 (16 oz.) package Our Family Chocolate Flavored or Vanilla Flavored Almond Bark
  • 1 cup Our Family® Roasted and Salted Almonds

Directions

 
  1. Melt almond bark according to package directions.
  2. Pour almonds directly into melted bark and mix well.
  3. Spread mixture about ¼-inch thick on wax paper; let set until dry.
  4. Break or cut into pieces.

 

Recipe courtesy of Log House Foods

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