2016-07-04 07:16:07 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The template for displaying the author pages.
|
|
|
|
*
|
|
|
|
* Learn more: https://codex.wordpress.org/Author_Templates
|
|
|
|
*
|
|
|
|
* @package understrap
|
|
|
|
*/
|
2016-11-21 18:47:05 +00:00
|
|
|
|
|
|
|
get_header();
|
|
|
|
$container = get_theme_mod( 'understrap_container_type' );
|
|
|
|
$sidebar_pos = get_theme_mod( 'understrap_sidebar_position' );
|
2016-11-01 15:25:21 +00:00
|
|
|
?>
|
2016-07-04 07:16:07 +00:00
|
|
|
|
2016-11-14 14:16:24 +00:00
|
|
|
|
2016-07-04 07:16:07 +00:00
|
|
|
<div class="wrapper" id="author-wrapper">
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<div class="<?php echo esc_html( $container ); ?>" id="content" tabindex="-1">
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
<!-- Do the left sidebar check -->
|
|
|
|
<?php get_template_part( 'global-templates/left-sidebar-check', 'none' ); ?>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<main class="site-main" id="main">
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<header class="page-header author-header">
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<?php
|
|
|
|
$curauth = ( isset( $_GET['author_name'] ) ) ? get_user_by( 'slug',
|
|
|
|
$author_name ) : get_userdata( intval( $author ) );
|
|
|
|
?>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<h1><?php esc_html_e( 'About:', 'understrap' ); ?><?php echo esc_html( $curauth->nickname ); ?></h1>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<?php if ( ! empty( $curauth->ID ) ) : ?>
|
|
|
|
<?php echo get_avatar( $curauth->ID ); ?>
|
|
|
|
<?php endif; ?>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<dl>
|
|
|
|
<?php if ( ! empty( $curauth->user_url ) ) : ?>
|
|
|
|
<dt><?php esc_html_e( 'Website', 'understrap' ); ?></dt>
|
|
|
|
<dd>
|
|
|
|
<a href="<?php echo esc_html( $curauth->user_url ); ?>"><?php echo esc_html( $curauth->user_url ); ?></a>
|
|
|
|
</dd>
|
|
|
|
<?php endif; ?>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<?php if ( ! empty( $curauth->user_description ) ) : ?>
|
|
|
|
<dt><?php esc_html_e( 'Profile', 'understrap' ); ?></dt>
|
|
|
|
<dd><?php echo esc_html( $curauth->user_description ); ?></dd>
|
|
|
|
<?php endif; ?>
|
|
|
|
</dl>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<h2><?php esc_html_e( 'Posts by', 'understrap' ); ?> <?php echo esc_html( $curauth->nickname ); ?>
|
|
|
|
:</h2>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
</header><!-- .page-header -->
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<ul>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<!-- The Loop -->
|
|
|
|
<?php if ( have_posts() ) : ?>
|
|
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
|
|
|
<li>
|
|
|
|
<a rel="bookmark" href="<?php the_permalink() ?>"
|
|
|
|
title="Permanent Link: <?php the_title(); ?>">
|
|
|
|
<?php the_title(); ?></a>,
|
|
|
|
<?php understrap_posted_on(); ?> <?php esc_html_e( 'in',
|
|
|
|
'understrap' ); ?> <?php the_category( '&' ); ?>
|
|
|
|
</li>
|
|
|
|
<?php endwhile; ?>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<?php else : ?>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<?php get_template_part( 'loop-templates/content', 'none' ); ?>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<?php endif; ?>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<!-- End Loop -->
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
</ul>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
</main><!-- #main -->
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-23 09:42:53 +00:00
|
|
|
<!-- The pagination component -->
|
|
|
|
<?php understrap_pagination(); ?>
|
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
</div><!-- #primary -->
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<!-- Do the right sidebar check -->
|
|
|
|
<?php if ( 'right' === $sidebar_pos || 'both' === $sidebar_pos ) : ?>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<?php get_sidebar( 'right' ); ?>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<?php endif; ?>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
</div> <!-- .row -->
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
</div><!-- Container end -->
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-07-04 07:16:07 +00:00
|
|
|
</div><!-- Wrapper end -->
|
|
|
|
|
2016-11-01 15:25:21 +00:00
|
|
|
<?php get_footer(); ?>
|