Search

Ingredients

  • 1 frozen banana
  • 1 Our Family® Apple – diced
  • ½ cup Our Family® Orange Juice
  • 1 cup Our Family® Low-fat Vanilla Yogurt
  • ½ cup cucumber – diced
  • 1 cup leafy greens – spinach or kale

Directions

  1. Add all ingredients to blender and blend until smooth.
  2. Enjoy!

*Recipe courtesy of Sage Fruit.

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