I have registered custom post type Article in my template using register_post_type function. and i also having taxonomy category for this article posts.
Here i want to filter the posts under particular category. using query post
How can i do this
Thanks in advance !
If you read http://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters in detail it outlines everything you need. Take a look at the following code sample taken from the codex. It should help you 🙂
Please note that this query does NOT account for paginated data.