-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauthor.php
More file actions
executable file
·46 lines (27 loc) · 884 Bytes
/
author.php
File metadata and controls
executable file
·46 lines (27 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php get_header(); ?>
<div class="row">
<!-- Section -->
<section class="span8">
<div class="main">
<div class="section">
<?php if (have_posts()): the_post(); ?>
<?php if ( get_the_author_meta( 'description' ) ) : ?>
<a class="pull-left thumbnails"><?php echo get_avatar( get_the_author_meta( 'user_email' ) ); ?></a>
<h2><?php echo get_the_author() ; ?> <small><?php _e( 'About me', 'spritz' );?></small></h2>
<div class="author-desc"><?php the_author_meta( 'description' ); ?></div>
<?php endif; ?>
<?php endif; ?>
<?php rewind_posts(); ?>
</div>
<?php get_template_part( 'loop' ); ?>
<!-- Pagination -->
<nav id="pagination">
<?php spritz_pagination(); ?>
</nav>
<!-- /Pagination -->
</div>
</section>
<!-- /Section -->
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>