| [ XREF Home ] [ Index ] |
PHP Cross Reference of WordPress TrunkProvided by Yoast |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * The template for displaying posts in the Status Post Format on index and archive pages 4 * 5 * Learn more: http://codex.wordpress.org/Post_Formats 6 * 7 * @package WordPress 8 * @subpackage Twenty_Eleven 9 */ 10 ?> 11 12 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 13 <header class="entry-header"> 14 <hgroup> 15 <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> 16 <h2 class="entry-format"><?php _e( 'Status', 'twentyeleven' ); ?></h2> 17 </hgroup> 18 19 <?php if ( 'post' == $post->post_type ) : ?> 20 <?php endif; ?> 21 22 <?php if ( comments_open() ) : ?> 23 <div class="comments-link"> 24 <?php comments_popup_link( __( '<span class="leave-reply">Reply</span>', 'twentyeleven' ), __( '1', 'twentyeleven' ), __( '%', 'twentyeleven' ) ); ?> 25 </div> 26 <?php endif; ?> 27 </header><!-- .entry-header --> 28 29 <?php if ( is_search() ) : // Only display Excerpts for Search ?> 30 <div class="entry-summary"> 31 <?php the_excerpt(); ?> 32 </div><!-- .entry-summary --> 33 <?php else : ?> 34 <div class="entry-content"> 35 <div class="avatar"><?php echo get_avatar( $post->post_author, apply_filters( 'twentyeleven_status_avatar', '65' ) ); ?></div> 36 37 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> 38 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyeleven' ), 'after' => '</div>' ) ); ?> 39 </div><!-- .entry-content --> 40 <?php endif; ?> 41 42 <footer class="entry-meta"> 43 <?php 44 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">%6$s</a></span>', 'twentyeleven' ), 45 get_permalink(), 46 get_the_date( 'c' ), 47 get_the_date(), 48 get_author_posts_url( get_the_author_meta( 'ID' ) ), 49 sprintf( esc_attr__( 'View all posts by %s', 'twentyeleven' ), get_the_author() ), 50 get_the_author() 51 ); 52 ?> 53 <?php if ( comments_open() ) : ?> 54 <span class="sep"> | </span> 55 <span class="comments-link"><?php comments_popup_link( __( '<span class="leave-reply">Leave a reply</span>', 'twentyeleven' ), __( '<b>1</b> Reply', 'twentyeleven' ), __( '<b>%</b> Replies', 'twentyeleven' ) ); ?></span> 56 <?php endif; ?> 57 <?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?> 58 </footer><!-- #entry-meta --> 59 </article><!-- #post-<?php the_ID(); ?> -->
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed Jun 1 08:30:02 2011 |
Cross-referenced by PHPXref 0.7 Provided by Yoast and awesome WordPress Hosting |