Don’t override query vars with query_posts arguments
Quite often, i find in themes custom queries to customize the content displayed on a page. These themes use either ‘query_posts’ or ‘WP_Query’ to achieve that. For example, the code below allows to exclude posts of some categories from homepage. The author of this code took care to not override the query var ‘paged’, not to…