get_query_var('paged') ); // globalize $wp_query global $wp_query; // Merge custom args with default query args $merged_query_args = array_merge( $wp_query->query, $custom_query_args ); // process the query query_posts( $merged_query_args ); if ( $wp_query->have_posts() ) : $i = 1; /* Start the Loop */ while ( $wp_query->have_posts() ) : $wp_query->the_post(); get_template_part('template-parts/content', 'loop'); $i++; endwhile; else : get_template_part( 'template-parts/content', 'none' ); endif; ?>