Anybody knows how to do this:?
I have for example this query:
$home_query = array(
'posts_per_page' => $home_1_posts,
'cat' => $home_1_cats_in,
'category__not_in' => $home_1_cats_out,
'tag__in' => $home_1_tags_in,
'tag__not_in' => $home_1_tags_out
);
query_posts($home_query_area_1);
I know how to concatenate the $query_string using, let´s say:
global $query_string;
query_posts( $query_string."&.orderby=");
That in order to use the pre-existing query args and only mixed with new ones…
But, how can i use the $query_string or similar, if using $args (as my first code) to the query_post ? I need to make the loop keeping for example the post_count value….

