-
Notifications
You must be signed in to change notification settings - Fork 0
/
author.php
executable file
·84 lines (73 loc) · 3.46 KB
/
author.php
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
/**
* The template for displaying category pages.
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*/
get_header(); ?>
<div id="primary" class="site-content span9">
<div class="entry-author">
<?php if ( get_the_author_meta( 'description' ) ) : ?>
<div class="author-info">
<div class="author-avatar">
<?php echo get_avatar( get_the_author_meta( 'user_email' ), 90 ); ?>
</div><!-- .author-avatar -->
<div class="author-description">
<h2><a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author"><?php echo get_the_author(); ?></a></h2>
<p class="description"><?php the_author_meta( 'description' ); ?></p>
<?php if ( get_the_author_meta( 'user_url' ) ) : ?>
<p class="user-url">
<span><?php _e('Website URL:','dw_focus') ?></span>
<a href="<?php the_author_meta( 'user_url' ); ?>" title="<?php the_author_meta( 'user_url' ); ?>">
<?php the_author_meta( 'user_url' ); ?>
</a>
</p>
<?php endif; ?>
<?php if ( get_the_author_meta( 'aim' ) ) : ?>
<p class="aim">
<span><?php _e('AIM:','dw_focus') ?></span>
<a href="aim:goaim?screenname=<?php the_author_meta( 'aim' ); ?>" title="<?php the_author_meta( 'aim' ); ?>"><?php the_author_meta( 'aim' ); ?></a>
</p>
<?php endif; ?>
<?php if ( get_the_author_meta( 'yim' ) ) : ?>
<p class="yahoo">
<span><?php _e('Yahoo:','dw_focus') ?></span>
<a href="ymsgr:sendim?<?php the_author_meta( 'yim' ); ?>" title="<?php the_author_meta( 'yim' ); ?>"><?php the_author_meta( 'yim' ); ?></a>
</p>
<?php endif; ?>
</div><!-- .author-description -->
</div><!-- .author-info -->
<?php endif; ?>
</div><!-- .entry-author -->
<div class="content-bar row-fluid">
<h1 class="page-title author"><?php printf( __( 'Author Archives: %s', 'dw_focus' ), '<span class="vcard">'.get_the_author() ); ?></h1>
</h1>
<div class="post-layout">
<a class="layout-list active" href="#"><i class="icon-th-list"></i></a>
<a class="layout-grid" href="#"><i class="icon-th"></i></a>
</div>
</div>
<?php
$no_results = '';
if( ! have_posts() ) {
$no_results = 'no-results';
}
?>
<div class="content-inner <?php echo $no_results ?>">
<?php if ( have_posts() ) : ?>
<?php global $archive_i; $archive_i = 1; ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part('content', 'archive'); ?>
<?php $archive_i++; ?>
<?php endwhile; ?>
<?php else : ?>
<?php get_template_part( 'no-results', 'archive' ); ?>
<?php endif; ?>
</div>
<?php
dw_focus_pagenavi();
wp_reset_query();
?>
</div>
<?php get_sidebar( ); ?>
<?php get_footer(); ?>