equal
deleted
inserted
replaced
1 <?php |
1 <?php |
2 /** |
2 /** |
3 * The template for displaying Author archive pages |
3 * The template for displaying Author archive pages |
4 * |
4 * |
5 * @link https://codex.wordpress.org/Template_Hierarchy |
5 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ |
6 * |
6 * |
7 * @package WordPress |
7 * @package WordPress |
8 * @subpackage Twenty_Thirteen |
8 * @subpackage Twenty_Thirteen |
9 * @since Twenty Thirteen 1.0 |
9 * @since Twenty Thirteen 1.0 |
10 */ |
10 */ |
46 |
46 |
47 <?php /* The loop */ ?> |
47 <?php /* The loop */ ?> |
48 <?php |
48 <?php |
49 while ( have_posts() ) : |
49 while ( have_posts() ) : |
50 the_post(); |
50 the_post(); |
51 ?> |
51 ?> |
52 <?php get_template_part( 'content', get_post_format() ); ?> |
52 <?php get_template_part( 'content', get_post_format() ); ?> |
53 <?php endwhile; ?> |
53 <?php endwhile; ?> |
54 |
54 |
55 <?php twentythirteen_paging_nav(); ?> |
55 <?php twentythirteen_paging_nav(); ?> |
56 |
56 |