What is the purpose of body_class function in wordpress ? body_class function helps to show the bunch of classes name to the body element that have information about what kind of page is currently being displayed. Here is the way...
How to add Category name to body class wordpress!
How to Exclude a category from WP_Query in WordPress !
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...