Below is the code which I have written to WP_Query a bunch of filters which involves post's custom meta fields,
<?php
global $post;
$month=date("m", time()); //current month
$month=intval($month); //converting '03' to int 3
$args = array( 'meta_key'=>"city", 'meta_value'=>'NY', 'numberposts' => 100,
'cat'=>"read", "monthnum" => $month, 'post_status' => "publish",
'order'=>"ASC", "orderby" => "meta_value_num", "meta_key" => "article_order");
$posts = WP_Query( $args );
?>
What I want to achieve from the above query is, " select this month's published posts from 'read' category with meta key 'city' having value 'NY' and order by 'meta_value_num' of meta_key 'article_order' "
cityin quotes'city'. And also tell us what is not working ? Do you have such post ? Does it not fetching it ? - Rikesh