while ( have_posts() ) : the_post();
$bimber_post_settings = bimber_get_post_settings();
bimber_set_template_part_data( $bimber_post_settings );
/*
* Include the post format-specific template for the content. If you want to
* use this in a child theme, then include a file called called content-single-classic-v2-___.php
* (where ___ is the post format) and that will be used instead.
*/
get_template_part( 'template-parts/content-single-classic-v2', get_post_format() );
bimber_reset_template_part_data();
endwhile;
?>