-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
author.php
48 lines (34 loc) · 1.26 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
<?php
/**
* Author archive template.
*
* For Webcomic-specific archives, see `webcomic/archive.php`.
*
* @package Inkblot
* @see codex.wordpress.org/Template_Hierarchy
*/
get_header(); ?>
<main role="main">
<?php if (have_posts()) : ?>
<header class="page-header">
<h1><?php printf(__('<span class="screen-reader-text">%s </span>%s'), __('Posts authored by', 'inkblot'), apply_filters('the_author', get_the_author_meta('display_name'))); ?></h1>
</header><!-- .page-header -->
<?php if (get_avatar(get_the_author_meta('user_email'))) : ?>
<div class="page-image"><?php print get_avatar(get_the_author_meta('user_email'), 128); ?></div><!-- .page-image -->
<?php endif; ?>
<?php if (get_the_author_meta('description')) : ?>
<div class="page-content"><?php the_author_meta('description'); ?></div><!-- .page-content -->
<?php endif; ?>
<?php
while (have_posts()) : the_post();
(webcomic() and is_a_webcomic())
? get_template_part('webcomic/content', get_post_type())
: get_template_part('content', get_post_format());
endwhile;
print inkblot_posts_nav(false, get_theme_mod('paged_navigation', true));
else:
get_template_part('content', 'none');
endif;
?>
</main>
<?php get_sidebar(); get_footer();