2013-08-22 19:03:10 +02:00
< ? php
/**
2013-10-12 00:02:11 +02:00
* The template for displaying posts in the Video post format
2013-08-22 19:03:10 +02:00
*
* @ package WordPress
* @ subpackage Twenty_Fourteen
2013-10-12 00:02:11 +02:00
* @ since Twenty Fourteen 1.0
2013-08-22 19:03:10 +02:00
*/
?>
< article id = " post-<?php the_ID(); ?> " < ? php post_class (); ?> >
2013-10-16 01:24:10 +02:00
< ? php twentyfourteen_post_thumbnail (); ?>
2013-10-08 23:22:10 +02:00
2013-08-22 19:03:10 +02:00
< header class = " entry-header " >
< ? php if ( in_array ( 'category' , get_object_taxonomies ( get_post_type () ) ) && twentyfourteen_categorized_blog () ) : ?>
< div class = " entry-meta " >
< span class = " cat-links " >< ? php echo get_the_category_list ( _x ( ', ' , 'Used between list items, there is a space after the comma.' , 'twentyfourteen' ) ); ?> </span>
</ div ><!-- . entry - meta -->
2018-08-17 03:51:36 +02:00
< ? php
2013-08-22 19:03:10 +02:00
endif ;
2019-01-12 07:41:52 +01:00
if ( is_single () ) :
the_title ( '<h1 class="entry-title">' , '</h1>' );
2013-08-22 19:03:10 +02: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-08-22 19:03:10 +02:00
< div class = " entry-meta " >
< span class = " post-format " >
2013-10-09 21:07:09 +02:00
< a class = " entry-format " href = " <?php echo esc_url( get_post_format_link( 'video' ) ); ?> " >< ? php echo get_post_format_string ( 'video' ); ?> </a>
2013-08-22 19:03:10 +02:00
</ span >
< ? php twentyfourteen_posted_on (); ?>
< ? php 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 ; ?>
< ? php edit_post_link ( __ ( 'Edit' , 'twentyfourteen' ), '<span class="edit-link">' , '</span>' ); ?>
</ div ><!-- . entry - meta -->
</ header ><!-- . entry - header -->
< div class = " entry-content " >
< ? php
2017-12-01 00:11:00 +01:00
the_content (
sprintf (
2019-09-03 02:41:05 +02:00
/* translators: %s: Post title. */
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 )
)
);
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>' ,
)
);
2018-08-17 03:51:36 +02:00
?>
2013-08-22 19:03:10 +02:00
</ div ><!-- . entry - content -->
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(); ?> -->