Make WordPress Core

Ticket #24863: authors-page.2.php

File authors-page.2.php, 600 bytes (added by MikeHansenMe, 13 years ago)

page template to call author function and keep content and comments

Line 
1<?php
2/**
3 * Template Name: Author Page
4 *
5 * @package WordPress
6 * @subpackage Twenty_Fourteen
7 */
8
9get_header(); ?>
10
11 <div id="primary" class="content-area">
12 <div id="content" class="site-content" role="main">
13 <?php
14 while ( have_posts() ) : the_post(); ?>
15
16 <?php get_template_part( 'content', 'page' ); ?>
17
18 <?php twentyforteen_author_boxes(); ?>
19
20 <?php comments_template( '', true ); ?>
21
22 <?php endwhile; ?>
23
24 </div><!-- #content .site-content -->
25 </div><!-- #primary .content-area -->
26
27<?php get_sidebar( 'content' ); ?>
28
29<?php get_sidebar(); ?>
30
31<?php get_footer(); ?>