Advertisement
WazzaJB

Shopp: Get Featured Products

Jul 5th, 2013
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. function get_featured_products()
  2. {
  3.     global $wpdb;
  4.     $the_products = array();
  5.     $products = $wpdb->get_results("SELECT product FROM {$wpdb->base_prefix}shopp_summary WHERE featured = 'on'");
  6.     foreach($products as $product)
  7.     {
  8.         array_push($the_products, shopp_product($product->product));
  9.     }
  10.     return $the_products;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement