query_posts(array(
'post_type' => APP_POST_TYPE,
APP_TAX_CAT => $term->slug,
'caller_get_posts' => 1,
'paged' => $paged,
'not_expired_coupons' => true,
'meta_query' => array(
'relation' => 'OR',
// Get rid of low success
array(
'key' => 'clpr_votes_percent',
'value' => array( 0, 50 ),
'compare' => 'NOT BETWEEN',
'type' => 'numeric',
),
// 0% Coupons with no votes are new coupons
array(
'key' => 'clpr_votes_down',
'value' => array(0,0),
'compare' => 'BETWEEN',
'type' => 'numeric'
)
)
));
// show all coupons with <= than 50% success (excluding 0%) for this category and setup pagination
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts(array(
"filter_unreliable" => true,
'post_type' => APP_POST_TYPE,
APP_TAX_CAT => $term->slug,
'caller_get_posts' => 1,
'paged' => $paged
));
There are currently 1 users browsing this thread. (0 members and 1 guests)