WordPress loop - fallback to content.php if other content-*.php files does not exist in child and parent theme:
<?php while ( have_posts() ) : the_post(); // start the loop ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; // end the loop ?>
