File: /var/www/html/wpprm/wp-content/themes/ronneby/single-author.php
<?php if ( ! defined( 'ABSPATH' ) ) { exit; } ?>
<?php get_template_part('templates/header/top', 'page'); ?>
<section id="layout" class="author-page dfd-equal-height-children">
<div class="row">
<?php
set_layout('single', true);
?>
<?php
$args = array( 'post_type' => 'author' );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
?>
<div class="entry-content">
<?php the_content(); ?>
</div>
<?php endwhile; ?>
<?php
set_layout('single', false);
?>
</div>
</section>