wp/wp-content/themes/twentythirteen/content-status.php
changeset 5 5e2f62d02dcd
parent 0 d970ebf37754
child 7 cf61fcea0001
equal deleted inserted replaced
4:346c88efed21 5:5e2f62d02dcd
     8  */
     8  */
     9 ?>
     9 ?>
    10 
    10 
    11 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    11 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    12 	<div class="entry-content">
    12 	<div class="entry-content">
    13 		<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentythirteen' ) ); ?>
    13 		<?php
    14 		<?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
    14 			/* translators: %s: Name of current post */
       
    15 			the_content( sprintf(
       
    16 				__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
       
    17 				the_title( '<span class="screen-reader-text">', '</span>', false )
       
    18 			) );
       
    19 
       
    20 			wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) );
       
    21 		?>
    15 	</div><!-- .entry-content -->
    22 	</div><!-- .entry-content -->
    16 
    23 
    17 	<footer class="entry-meta">
    24 	<footer class="entry-meta">
    18 		<?php twentythirteen_entry_meta(); ?>
    25 		<?php twentythirteen_entry_meta(); ?>
    19 		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
    26 		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>