How to Exclude a category from WP_Query in WordPress ! By NST 25 Dec, 2018 function, PHP, Wordpress, wp_query 0 Exclude Category .. Sometime we don't want to show the posts from the particular category so here is the code you have to modify.. query_posts(array( 'post_type' => 'post', 'showposts' => 14, 'category__not_in' => 10, // category id ) ); In...