wp/wp-content/themes/twentythirteen/archive.php
changeset 7 cf61fcea0001
parent 5 5e2f62d02dcd
child 10 372f2766ea20
equal deleted inserted replaced
6:490d5cc509ed 7:cf61fcea0001
    22 	<div id="primary" class="content-area">
    22 	<div id="primary" class="content-area">
    23 		<div id="content" class="site-content" role="main">
    23 		<div id="content" class="site-content" role="main">
    24 
    24 
    25 		<?php if ( have_posts() ) : ?>
    25 		<?php if ( have_posts() ) : ?>
    26 			<header class="archive-header">
    26 			<header class="archive-header">
    27 				<h1 class="archive-title"><?php
    27 				<h1 class="archive-title">
    28 					if ( is_day() ) :
    28 				<?php
    29 						printf( __( 'Daily Archives: %s', 'twentythirteen' ), get_the_date() );
    29 				if ( is_day() ) :
       
    30 					printf( __( 'Daily Archives: %s', 'twentythirteen' ), get_the_date() );
    30 					elseif ( is_month() ) :
    31 					elseif ( is_month() ) :
    31 						printf( __( 'Monthly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentythirteen' ) ) );
    32 						printf( __( 'Monthly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentythirteen' ) ) );
    32 					elseif ( is_year() ) :
    33 					elseif ( is_year() ) :
    33 						printf( __( 'Yearly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentythirteen' ) ) );
    34 						printf( __( 'Yearly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentythirteen' ) ) );
    34 					else :
    35 					else :
    35 						_e( 'Archives', 'twentythirteen' );
    36 						_e( 'Archives', 'twentythirteen' );
    36 					endif;
    37 					endif;
    37 				?></h1>
    38 				?>
       
    39 				</h1>
    38 			</header><!-- .archive-header -->
    40 			</header><!-- .archive-header -->
    39 
    41 
    40 			<?php /* The loop */ ?>
    42 			<?php /* The loop */ ?>
    41 			<?php while ( have_posts() ) : the_post(); ?>
    43 			<?php
       
    44 			while ( have_posts() ) :
       
    45 				the_post();
       
    46 ?>
    42 				<?php get_template_part( 'content', get_post_format() ); ?>
    47 				<?php get_template_part( 'content', get_post_format() ); ?>
    43 			<?php endwhile; ?>
    48 			<?php endwhile; ?>
    44 
    49 
    45 			<?php twentythirteen_paging_nav(); ?>
    50 			<?php twentythirteen_paging_nav(); ?>
    46 
    51