Estou trabalhando em um tema wordpress e me deparei com a seguinte organização:
<?php /* Start the Loop */ ?>
            <?php while ( have_posts() ) : the_post(); ?>
                <?php do_action('mtl_inside_loop_before'); ?>
                <?php get_template_part( 'template-parts/content', get_post_format() ); ?>
                <?php do_action('mtl_inside_loop_after'); ?>
            <?php endwhile; ?>
Não entendo porque o desenvolvedor abre uma tag para cada linha, ao invez de fechar esse blco inteiro com uma tag só, tem algum motivo especial isso?