This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
understrap/author.php

101 lines
2.6 KiB
PHP
Raw Normal View History

<?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
2018-09-10 21:59:04 +00:00
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
2016-11-21 18:47:05 +00:00
get_header();
$container = get_theme_mod( 'understrap_container_type' );
?>
<div class="wrapper" id="author-wrapper">
<div class="<?php echo esc_attr( $container ); ?>" id="content" tabindex="-1">
2016-11-21 18:47:05 +00:00
<div class="row">
<!-- Do the left sidebar check -->
2017-10-27 02:43:58 +00:00
<?php get_template_part( 'global-templates/left-sidebar-check' ); ?>
2016-11-21 18:47:05 +00:00
<main class="site-main" id="main">
2016-11-21 18:47:05 +00:00
<header class="page-header author-header">
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-21 18:47:05 +00:00
<h1><?php esc_html_e( 'About:', 'understrap' ); ?><?php echo esc_html( $curauth->nickname ); ?></h1>
2016-11-21 18:47:05 +00:00
<?php if ( ! empty( $curauth->ID ) ) : ?>
<?php echo get_avatar( $curauth->ID ); ?>
<?php endif; ?>
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_url( $curauth->user_url ); ?>"><?php echo esc_html( $curauth->user_url ); ?></a>
2016-11-21 18:47:05 +00:00
</dd>
<?php endif; ?>
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-21 18:47:05 +00:00
<h2><?php esc_html_e( 'Posts by', 'understrap' ); ?> <?php echo esc_html( $curauth->nickname ); ?>
:</h2>
2016-11-21 18:47:05 +00:00
</header><!-- .page-header -->
2016-11-21 18:47:05 +00:00
<ul>
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="<?php esc_html_e( 'Permanent Link:', 'understrap' ); ?> <?php the_title(); ?>">
2016-11-21 18:47:05 +00:00
<?php the_title(); ?></a>,
<?php understrap_posted_on(); ?> <?php esc_html_e( 'in',
'understrap' ); ?> <?php the_category( '&' ); ?>
</li>
<?php endwhile; ?>
2016-11-21 18:47:05 +00:00
<?php else : ?>
2016-11-21 18:47:05 +00:00
<?php get_template_part( 'loop-templates/content', 'none' ); ?>
2016-11-21 18:47:05 +00:00
<?php endif; ?>
2016-11-21 18:47:05 +00:00
<!-- End Loop -->
2016-11-21 18:47:05 +00:00
</ul>
2016-11-21 18:47:05 +00:00
</main><!-- #main -->
2016-11-23 09:42:53 +00:00
<!-- The pagination component -->
<?php understrap_pagination(); ?>
2016-11-21 18:47:05 +00:00
<!-- Do the right sidebar check -->
2017-11-27 03:36:12 +00:00
<?php get_template_part( 'global-templates/right-sidebar-check' ); ?>
2016-11-21 18:47:05 +00:00
</div> <!-- .row -->
2016-11-21 18:47:05 +00:00
</div><!-- Container end -->
</div><!-- Wrapper end -->
<?php get_footer(); ?>