0) $query_args['tax_query'] = array(
			array(
				'taxonomy' => 'taxonomy_portfolio',
				'field' => 'id',
				'terms' => $portfolio_categories_array
			)
		);
		
		$wp_query = new WP_Query($query_args);
		
		$c = 0;
		
		if (have_posts()) : 
			
			while (have_posts()) : 
				
				the_post();
				$c++;
?>