- Timestamp:
- 08/14/2013 04:38:01 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/content-page.php
r24832 r25021 1 1 <?php 2 2 /** 3 * The template used for displaying page content in page.php3 * The template used for displaying page content. 4 4 * 5 5 * @package WordPress … … 9 9 10 10 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 11 <header class="entry-header"> 12 <h1 class="entry-title"><?php the_title(); ?></h1> 13 </header><!-- .entry-header --> 11 <?php the_title( '<header class="entry-header"><h1 class="entry-title">', '</h1></header><!-- .entry-header -->' ); ?> 14 12 15 <div class="entry-content clearfix"> 16 <?php the_content(); ?> 13 <div class="entry-content"> 17 14 <?php 15 the_content(); 18 16 wp_link_pages( array( 19 17 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentyfourteen' ) . '</span>', 20 18 'after' => '</div>', 21 19 'link_before' => '<span>', 22 'link_after' => '</span>' 20 'link_after' => '</span>', 23 21 ) ); 22 23 edit_post_link( __( 'Edit', 'twentyfourteen' ), '<span class="edit-link">', '</span>' ); 24 24 ?> 25 <?php edit_post_link( __( 'Edit', 'twentyfourteen' ), '<span class="edit-link">', '</span>' ); ?>26 25 </div><!-- .entry-content --> 27 </article><!-- #post- <?php the_ID(); ?>-->26 </article><!-- #post-## -->
Note: See TracChangeset
for help on using the changeset viewer.