equal
deleted
inserted
replaced
4 * |
4 * |
5 * Used to display archive-type pages for posts with a post format. |
5 * Used to display archive-type pages for posts with a post format. |
6 * If you'd like to further customize these Post Format views, you may create a |
6 * If you'd like to further customize these Post Format views, you may create a |
7 * new template file for each specific one. |
7 * new template file for each specific one. |
8 * |
8 * |
9 * @link https://codex.wordpress.org/Template_Hierarchy |
9 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ |
10 * |
10 * |
11 * @package WordPress |
11 * @package WordPress |
12 * @subpackage Twenty_Thirteen |
12 * @subpackage Twenty_Thirteen |
13 * @since Twenty Thirteen 1.0 |
13 * @since Twenty Thirteen 1.0 |
14 */ |
14 */ |
25 |
25 |
26 <?php /* The loop */ ?> |
26 <?php /* The loop */ ?> |
27 <?php |
27 <?php |
28 while ( have_posts() ) : |
28 while ( have_posts() ) : |
29 the_post(); |
29 the_post(); |
30 ?> |
30 ?> |
31 <?php get_template_part( 'content', get_post_format() ); ?> |
31 <?php get_template_part( 'content', get_post_format() ); ?> |
32 <?php endwhile; ?> |
32 <?php endwhile; ?> |
33 |
33 |
34 <?php twentythirteen_paging_nav(); ?> |
34 <?php twentythirteen_paging_nav(); ?> |
35 |
35 |