2013-08-22 19:03:10 +02:00
< ? php
/**
* The template for displaying posts in the Link post format .
*
* @ package WordPress
* @ subpackage Twenty_Fourteen
*/
?>
< article id = " post-<?php the_ID(); ?> " < ? php post_class (); ?> >
2013-10-08 23:22:10 +02:00
< ? php twentyfourteen_featured_thumbnail (); ?>
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 -->
< ? php endif ; ?>
< 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( 'link' ) ); ?> " >< ? php echo get_post_format_string ( 'link' ); ?> </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
the_content ();
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>' ,
) );
?>
</ div ><!-- . entry - content -->
< ? 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-## -->