我正在使用WP_Query
$the_query = new WP_Query( array( 'post_type' => 'testimonials', 'showposts' => -1 ) );
,它会检索所有帖子类型为"推荐书",
所以
我需要根据metakey =" rate"的帖子过滤它们。和metavalue< = 4
答案 0 :(得分:2)
$the_query = new WP_Query(
array(
'post_type' => 'testimonials',
'showposts' => -1,
'meta_key' => 'rate',
'meta_value' => 4,
'meta_compare' => '<='
)
);