我用的是WP_Query
$the_query = new WP_Query( array( 'post_type' => 'testimonials', 'showposts' => -1 ) );,并检索所有具有post类型=“证明”的帖子,
所以
我需要根据有测速=“速率”和元雪崩<= 4的帖子过滤它们。
发布于 2015-02-15 17:14:48
$the_query = new WP_Query(
array(
'post_type' => 'testimonials',
'showposts' => -1,
'meta_key' => 'rate',
'meta_value' => 4,
'meta_compare' => '<='
)
);https://stackoverflow.com/questions/28528656
复制相似问题