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 " >
2020-04-05 05:02:11 +02:00
< ? php if ( in_array ( 'category' , get_object_taxonomies ( get_post_type () ), true ) && 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 >
2018-08-17 03:51:36 +02:00
< ? php
2013-11-07 20:05:09 +01:00
endif ;
2019-01-12 07:41:52 +01:00
if ( is_single () ) :
the_title ( '<h1 class="entry-title">' , '</h1>' );
2013-10-30 15:39:10 +01:00
else :
the_title ( '<h1 class="entry-title"><a href="' . esc_url ( get_permalink () ) . '" rel="bookmark">' , '</a></h1>' );
endif ;
2018-08-17 03:51:36 +02:00
?>
2013-07-29 00:55:10 +02:00
< div class = " entry-meta " >
< ? php
2020-05-16 20:42:12 +02:00
if ( 'post' === get_post_type () ) {
2017-12-01 00:11:00 +01:00
twentyfourteen_posted_on ();
}
2013-07-29 00:55:10 +02:00
2017-12-01 00:11:00 +01:00
if ( ! post_password_required () && ( comments_open () || get_comments_number () ) ) :
2018-08-17 03:51:36 +02:00
?>
2013-08-15 05:13:29 +02:00
< span class = " comments-link " >< ? php comments_popup_link ( __ ( 'Leave a comment' , 'twentyfourteen' ), __ ( '1 Comment' , 'twentyfourteen' ), __ ( '% Comments' , 'twentyfourteen' ) ); ?> </span>
2018-08-17 03:51:36 +02:00
< ? php
2013-08-15 05:13:29 +02:00
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
2017-12-01 00:11:00 +01:00
the_content (
sprintf (
2022-04-29 07:03:11 +02:00
/* translators: %s: Post title. Only visible to screen readers. */
2017-12-01 00:11:00 +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
2017-12-01 00:11:00 +01:00
wp_link_pages (
array (
'before' => '<div class="page-links"><span class="page-links-title">' . __ ( 'Pages:' , 'twentyfourteen' ) . '</span>' ,
'after' => '</div>' ,
'link_before' => '<span>' ,
'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>' ); ?>
2019-04-16 03:30:53 +02:00
</ article ><!-- #post-<?php the_ID(); ?> -->