Confused on how to achieve this, but what I'm trying to do is load posts with the tag "reviews" in the loop on the homepage.
Index.php:
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
get_template_part( 'content-reviews', get_post_format() );
?>
<?php endwhile; ?>
<?php else : ?>
<?php get_template_part( 'no-results', 'index' ); ?>
<?php endif; ?>