22 lines
598 B
PHP
Executable File
22 lines
598 B
PHP
Executable File
<?php
|
|
/**
|
|
* The template for displaying Author Archive pages
|
|
*
|
|
* Methods for TimberHelper can be found in the /lib sub-directory
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Timber
|
|
* @since Timber 0.1
|
|
*/
|
|
|
|
global $wp_query;
|
|
|
|
$context = Timber::context();
|
|
$context['posts'] = new Timber\PostQuery();
|
|
if ( isset( $wp_query->query_vars['author'] ) ) {
|
|
$author = new Timber\User( $wp_query->query_vars['author'] );
|
|
$context['author'] = $author;
|
|
$context['title'] = 'Author Archives: ' . $author->name();
|
|
}
|
|
Timber::render( array( 'author.twig', 'archive.twig' ), $context );
|