2011-04-20 23:46:33 +02:00
< ? php
/**
2011-05-02 23:04:44 +02:00
* The template for displaying content featured in the showcase . php page template
*
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 " >
< h1 class = " entry-title " >< a href = " <?php the_permalink(); ?> " title = " <?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?> " rel = " bookmark " >< ? php the_title (); ?> </a></h1>
< div class = " entry-meta " >
< ? php
2011-06-08 04:02:09 +02:00
printf ( __ ( '<span class="sep">Posted on </span><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate>%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s" rel="author">%6$s</a></span>' , 'twentyeleven' ),
2011-04-20 23:46:33 +02:00
get_permalink (),
get_the_date ( 'c' ),
get_the_date (),
get_author_posts_url ( get_the_author_meta ( 'ID' ) ),
sprintf ( esc_attr__ ( 'View all posts by %s' , 'twentyeleven' ), get_the_author () ),
get_the_author ()
);
?>
</ div ><!-- . entry - meta -->
</ header ><!-- . entry - header -->
< div class = " entry-summary " >
< ? php the_excerpt (); ?>
< ? php wp_link_pages ( array ( 'before' => '<div class="page-link">' . __ ( 'Pages:' , 'twentyeleven' ), 'after' => '</div>' ) ); ?>
</ div ><!-- . entry - content -->
< footer class = " entry-meta " >
< ? php
2011-05-25 17:19:33 +02:00
/* translators: used between list items, there is a space after the comma */
$tag_list = get_the_tag_list ( '' , __ ( ', ' , 'twentyeleven' ) );
2011-04-20 23:46:33 +02:00
if ( '' != $tag_list ) {
$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 {
$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' );
}
printf (
$utility_text ,
2011-05-25 17:19:33 +02:00
/* translators: used between list items, there is a space after the comma */
get_the_category_list ( __ ( ', ' , 'twentyeleven' ) ),
2011-04-20 23:46:33 +02:00
$tag_list ,
get_permalink (),
the_title_attribute ( 'echo=0' )
);
?>
< ? php edit_post_link ( __ ( 'Edit' , 'twentyeleven' ), '<span class="edit-link">' , '</span>' ); ?>
</ footer ><!-- . entry - meta -->
</ article ><!-- #post-<?php the_ID(); ?> -->