2011-04-20 23:46:33 +02:00
< ? php
/**
2013-09-25 18:50:11 +02:00
* Template for displaying content featured in the showcase . php page template
2011-05-02 23:04:44 +02:00
*
2011-04-20 23:46:33 +02:00
* @ package WordPress
2011-05-18 21:06:09 +02:00
* @ subpackage Twenty_Eleven
2011-05-02 23:04:44 +02:00
* @ since Twenty Eleven 1.0
2011-04-20 23:46:33 +02:00
*/
global $feature_class ;
?>
< article id = " post-<?php the_ID(); ?> " < ? php post_class ( $feature_class ); ?> >
< header class = " entry-header " >
2013-04-29 18:57:30 +02:00
< h2 class = " entry-title " >< a href = " <?php the_permalink(); ?> " rel = " bookmark " >< ? php the_title (); ?> </a></h2>
2011-04-20 23:46:33 +02:00
< div class = " entry-meta " >
2011-06-10 23:57:18 +02:00
< ? php twentyeleven_posted_on (); ?>
2011-04-20 23:46:33 +02:00
</ div ><!-- . entry - meta -->
</ header ><!-- . entry - header -->
< div class = " entry-summary " >
< ? php the_excerpt (); ?>
2017-12-01 00:11:00 +01:00
< ? php
wp_link_pages (
array (
'before' => '<div class="page-link"><span>' . __ ( 'Pages:' , 'twentyeleven' ) . '</span>' ,
'after' => '</div>' ,
)
);
2018-08-17 03:51:36 +02:00
?>
2011-04-20 23:46:33 +02:00
</ div ><!-- . entry - content -->
< footer class = " entry-meta " >
< ? php
2019-09-03 02:41:05 +02:00
/* translators: Used between list items, there is a space after the comma. */
2011-05-25 17:19:33 +02:00
$tag_list = get_the_tag_list ( '' , __ ( ', ' , 'twentyeleven' ) );
2017-12-01 00:11:00 +01:00
if ( '' != $tag_list ) {
2019-09-03 02:41:05 +02:00
/* translators: 1: Category list, 2: Tag list, 3: Post permalink, 4: Post title. */
2017-12-01 00:11:00 +01:00
$utility_text = __ ( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.' , 'twentyeleven' );
} else {
2019-09-03 02:41:05 +02:00
/* translators: 1: Category list, 3: Post permalink, 4: Post title. */
2017-12-01 00:11:00 +01:00
$utility_text = __ ( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.' , 'twentyeleven' );
}
2011-04-20 23:46:33 +02:00
printf (
$utility_text ,
2019-09-03 02:41:05 +02:00
/* translators: Used between list items, there is a space after the comma. */
2011-05-25 17:19:33 +02:00
get_the_category_list ( __ ( ', ' , 'twentyeleven' ) ),
2011-04-20 23:46:33 +02:00
$tag_list ,
2011-06-10 23:57:18 +02:00
esc_url ( get_permalink () ),
2011-04-20 23:46:33 +02:00
the_title_attribute ( 'echo=0' )
);
2018-08-17 03:51:36 +02:00
?>
2011-04-20 23:46:33 +02:00
< ? php edit_post_link ( __ ( 'Edit' , 'twentyeleven' ), '<span class="edit-link">' , '</span>' ); ?>
</ footer ><!-- . entry - meta -->
</ article ><!-- #post-<?php the_ID(); ?> -->