Here are some other queries related to this topic ... How to show child pages of a parent page wordpress? Show all pages of a parent page wp ? How to display list of child pages of parent page in...
How to show all child pages of a specific wordpress page ?
Exclude particular category posts by query post in wordpress
Sometime we don't want to show the posts from the specific category so here is the code that help you to exclude that particular category posts from the posts. query_posts(array( 'post_type' => 'post', 'showposts' => 14, 'category__not_in' => 10, 'meta_query'...