2013-07-28 18:55:10 -04:00
< ? php
/**
2013-10-11 18:02:11 -04:00
* The default template for displaying content
*
* Used for both single and index / archive / search .
*
2013-07-28 18:55:10 -04:00
* @ package WordPress
* @ subpackage Twenty_Fourteen
2013-10-11 18:02:11 -04:00
* @ since Twenty Fourteen 1.0
2013-07-28 18:55:10 -04:00
*/
?>
2013-08-14 23:13:29 -04:00
< article id = " post-<?php the_ID(); ?> " < ? php post_class (); ?> >
2013-10-15 19:24:10 -04:00
< ? php twentyfourteen_post_thumbnail (); ?>
2013-07-28 18:55:10 -04:00
< header class = " entry-header " >
2013-08-14 23:13:29 -04:00
< ? php if ( in_array ( 'category' , get_object_taxonomies ( get_post_type () ) ) && twentyfourteen_categorized_blog () ) : ?>
2013-07-28 18:55:10 -04:00
< div class = " entry-meta " >
2013-08-14 23:13:29 -04:00
< span class = " cat-links " >< ? php echo get_the_category_list ( _x ( ', ' , 'Used between list items, there is a space after the comma.' , 'twentyfourteen' ) ); ?> </span>
2013-07-28 18:55:10 -04:00
</ div >
< ? php endif ; ?>
2013-08-22 13:03:10 -04:00
< ? php the_title ( '<h1 class="entry-title"><a href="' . esc_url ( get_permalink () ) . '" rel="bookmark">' , '</a></h1>' ); ?>
2013-07-28 18:55:10 -04:00
< div class = " entry-meta " >
< ? php
if ( 'post' == get_post_type () )
twentyfourteen_posted_on ();
2013-08-14 23:13:29 -04:00
if ( ! post_password_required () && ( comments_open () || get_comments_number () ) ) :
?>
< span class = " comments-link " >< ? php comments_popup_link ( __ ( 'Leave a comment' , 'twentyfourteen' ), __ ( '1 Comment' , 'twentyfourteen' ), __ ( '% Comments' , 'twentyfourteen' ) ); ?> </span>
< ? php
endif ;
2013-07-28 18:55:10 -04:00
2013-08-14 23:13:29 -04:00
edit_post_link ( __ ( 'Edit' , 'twentyfourteen' ), '<span class="edit-link">' , '</span>' );
?>
2013-07-28 18:55:10 -04:00
</ div ><!-- . entry - meta -->
</ header ><!-- . entry - header -->
< ? php if ( is_search () ) : ?>
2013-08-14 23:13:29 -04:00
< div class = " entry-summary " >
2013-07-28 18:55:10 -04:00
< ? php the_excerpt (); ?>
</ div ><!-- . entry - summary -->
< ? php else : ?>
2013-08-14 23:13:29 -04:00
< div class = " entry-content " >
2013-07-28 18:55:10 -04:00
< ? php
2013-08-14 23:13:29 -04:00
the_content ( __ ( 'Continue reading <span class="meta-nav">→</span>' , 'twentyfourteen' ) );
2013-07-28 18:55:10 -04:00
wp_link_pages ( array (
'before' => '<div class="page-links"><span class="page-links-title">' . __ ( 'Pages:' , 'twentyfourteen' ) . '</span>' ,
'after' => '</div>' ,
'link_before' => '<span>' ,
2013-08-14 23:13:29 -04:00
'link_after' => '</span>' ,
2013-07-28 18:55:10 -04:00
) );
?>
</ div ><!-- . entry - content -->
< ? php endif ; ?>
2013-08-14 23:13:29 -04:00
< ? php if ( has_tag () ) : ?>
< footer class = " entry-meta " >
< span class = " tag-links " >< ? php echo get_the_tag_list (); ?> </span>
</ footer ><!-- . entry - meta -->
< ? php endif ; ?>
</ article ><!-- #post-## -->