array( 'publish' ),
'paged' => $paged,
);
// The Query
$aniki_index_query = new WP_Query( $aniki_args );
if ( $aniki_index_query->have_posts() ) :
if ( is_home() && ! is_front_page() ) : ?>
have_posts() ) :
$aniki_index_query->the_post();
get_template_part( 'template-parts/content', '' );
endwhile;
the_posts_navigation();
else :
get_template_part( 'template-parts/content', 'none' );
endif;
// Restore original Post Data
wp_reset_postdata();
?>