2013-07-29 00:55:10 +02:00
< ? php
/**
2013-10-12 00:02:11 +02:00
* The default template for displaying content
*
* Used for both single and index / archive / search .
*
2013-07-29 00:55:10 +02:00
* @ package WordPress
* @ subpackage Twenty_Fourteen
2013-10-12 00:02:11 +02:00
* @ since Twenty Fourteen 1.0
2013-07-29 00:55:10 +02:00
*/
?>
2013-08-15 05:13:29 +02:00
< article id = " post-<?php the_ID(); ?> " < ? php post_class (); ?> >
2013-10-16 01:24:10 +02:00
< ? php twentyfourteen_post_thumbnail (); ?>
2013-07-29 00:55:10 +02:00
< header class = " entry-header " >
2013-08-15 05:13:29 +02:00
< ? php if ( in_array ( 'category' , get_object_taxonomies ( get_post_type () ) ) && twentyfourteen_categorized_blog () ) : ?>
2013-07-29 00:55:10 +02:00
< div class = " entry-meta " >
2013-08-15 05:13:29 +02: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-29 00:55:10 +02:00
</ div >
2013-10-30 15:39:10 +01:00
< ? php
2013-11-07 20:05:09 +01:00
endif ;
2013-10-30 15:39:10 +01:00
if ( is_single () ) :
the_title ( '<h1 class="entry-title">' , '</h1>' );
else :
the_title ( '<h1 class="entry-title"><a href="' . esc_url ( get_permalink () ) . '" rel="bookmark">' , '</a></h1>' );
endif ;
?>
2013-07-29 00:55:10 +02:00
< div class = " entry-meta " >
< ? php
if ( 'post' == get_post_type () )
twentyfourteen_posted_on ();
2013-08-15 05:13:29 +02: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-29 00:55:10 +02:00
2013-08-15 05:13:29 +02:00
edit_post_link ( __ ( 'Edit' , 'twentyfourteen' ), '<span class="edit-link">' , '</span>' );
?>
2013-07-29 00:55:10 +02:00
</ div ><!-- . entry - meta -->
</ header ><!-- . entry - header -->
< ? php if ( is_search () ) : ?>
2013-08-15 05:13:29 +02:00
< div class = " entry-summary " >
2013-07-29 00:55:10 +02:00
< ? php the_excerpt (); ?>
</ div ><!-- . entry - summary -->
< ? php else : ?>
2013-08-15 05:13:29 +02:00
< div class = " entry-content " >
2013-07-29 00:55:10 +02:00
< ? php
2014-11-19 19:27:22 +01:00
/* translators: %s: Name of current post */
the_content ( sprintf (
2014-12-09 19:57:24 +01:00
__ ( 'Continue reading %s <span class="meta-nav">→</span>' , 'twentyfourteen' ),
the_title ( '<span class="screen-reader-text">' , '</span>' , false )
2014-11-19 19:27:22 +01:00
) );
2013-07-29 00:55:10 +02: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-15 05:13:29 +02:00
'link_after' => '</span>' ,
2013-07-29 00:55:10 +02:00
) );
?>
</ div ><!-- . entry - content -->
< ? php endif ; ?>
2013-11-18 23:48:10 +01:00
< ? php the_tags ( '<footer class="entry-meta"><span class="tag-links">' , '' , '</span></footer>' ); ?>
2013-08-15 05:13:29 +02:00
</ article ><!-- #post-## -->