如何筛选 WP_Query
how to filter WP_Query
我正在使用 WP_Query
$the_query = new WP_Query( array( 'post_type' => 'testimonials', 'showposts' => -1 ) );
,它会检索所有具有 post 类型 = "testimonials"、
的 post
所以
我需要根据元键 = "rate" 和元值 <= 4
的 post 过滤它们
$the_query = new WP_Query(
array(
'post_type' => 'testimonials',
'showposts' => -1,
'meta_key' => 'rate',
'meta_value' => 4,
'meta_compare' => '<='
)
);
我正在使用 WP_Query
$the_query = new WP_Query( array( 'post_type' => 'testimonials', 'showposts' => -1 ) );
,它会检索所有具有 post 类型 = "testimonials"、
所以
我需要根据元键 = "rate" 和元值 <= 4
的 post 过滤它们$the_query = new WP_Query(
array(
'post_type' => 'testimonials',
'showposts' => -1,
'meta_key' => 'rate',
'meta_value' => 4,
'meta_compare' => '<='
)
);