它正在处理此问题,感谢@ialocin的帮助:
// show all active coupons for this store and setup pagination
$paged = (get_query_var(\'paged\')) ? get_query_var(\'paged\') : 1;
query_posts( array(
\'post_type\' => APP_POST_TYPE,
\'post_status\' => \'publish\',
APP_TAX_STORE => $term->slug,
\'ignore_sticky_posts\' => 1,
\'posts_per_page\' => -1,
\'meta_query\' => array(
\'relation\' => \'OR\',
array(
\'key\' => \'clpr_excoupon\',
\'compare\' => \'NOT EXISTS\'
),
array(
\'key\' => \'clpr_excoupon\',
\'compare\' => \'!=\',
\'value\' => \'1\'
),
),
\'paged\' => $paged
) );