array('post'),
'post_status' => array('publish'),
'paged' => $paged,
'is_archive' => true,
'is_home' => false
);
// The Query
$wp_query = new WP_Query($args);
// The Loop
if ($wp_query->have_posts()):
while ($wp_query->have_posts()) {
$wp_query->the_post();
get_template_part('templates/content');
}
else:
?>