Thank you Pepe,
here is the code of the author page:
<?php get_header(); ?>
<?php $sidebar = pukka_get_option(‘show_category_sidebar’); ?>
<div id=”content” class=”<?php if(!empty($sidebar) && ‘none’ != $sidebar){ echo ‘sidebar-‘ . $sidebar; } ?>” role=”main”>
<div class=”content-wrap”>
<header class=”archive-header”>
<h1 class=”archive-title”><?php echo get_the_author(); ?></h1>
</header><!– .archive-header –>
<?php if ( get_the_author_meta( ‘description’ ) ) : ?>
<?php echo get_the_author_meta( ‘description’ ); ?>
<?php endif; ?>
<p></p>
<?php display_author_media(get_the_author_ID(), $sidebar = false, $limit = 15,$link_without_parent = false, $header = “<h5>Recent Artwork</h3>”, $exclude_unattached = true); ?>
<?php if ( have_posts() ) : ?>
</div> <!–. content-wrap –>
<?php
/* Queue the first post, that way we know
* what author we’re dealing with.
*/
the_post();
?>
<?php
/* Since we called the_post() above, we need to
* rewind the loop back to the beginning.
*/
rewind_posts();
?>
<?php /* The loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( ‘content’, get_post_format() ); ?>
<?php endwhile; ?>
<?php pukka_paging_nav(); ?>
<?php else : ?>
<?php get_template_part( ‘content’, ‘none’ ); ?>
<?php endif; ?>
</div><!– #content –>
<?php
if(!empty($sidebar) && ‘none’ != $sidebar){
get_sidebar($sidebar);
}
?>
<?php get_footer(); ?>