您需要使用WP\\u query(http://codex.wordpress.org/Class_Reference/WP_Query )
下面是一个使用两个单独的元键比较的片段:
$query_args = array(
\'post_type\' => \'event\',
\'order\' => \'ASC\',
\'orderby\' => \'meta_value_num\',
\'meta_key\' => \'_start_date\',
\'meta_query\' => array (
array(
\'key\' => \'_start_date\',
\'value\' => $_start_of_month,
\'compare\' => \'>\',
),
array(
\'key\' => \'_start_date\',
\'value\' => $_end_of_month,
\'compare\' => \'<\',
),
),
);
要点:请注意,meta\\u查询采用一个数组。