first commit
This commit is contained in:
Executable
+21
@@ -0,0 +1,21 @@
|
||||
<?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 );
|
||||
Reference in New Issue
Block a user