[ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Template for displaying content 4 * 5 * @package WordPress 6 * @subpackage Twenty_Eleven 7 * @since Twenty Eleven 1.0 8 */ 9 ?> 10 11 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 12 <header class="entry-header"> 13 <?php if ( is_sticky() ) : ?> 14 <hgroup> 15 <h2 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2> 16 <h3 class="entry-format"><?php _e( 'Featured', 'twentyeleven' ); ?></h3> 17 </hgroup> 18 <?php else : ?> 19 <h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1> 20 <?php endif; ?> 21 22 <?php if ( 'post' == get_post_type() ) : ?> 23 <div class="entry-meta"> 24 <?php twentyeleven_posted_on(); ?> 25 </div><!-- .entry-meta --> 26 <?php endif; ?> 27 28 <?php if ( comments_open() && ! post_password_required() ) : ?> 29 <div class="comments-link"> 30 <?php comments_popup_link( '<span class="leave-reply">' . __( 'Reply', 'twentyeleven' ) . '</span>', _x( '1', 'comments number', 'twentyeleven' ), _x( '%', 'comments number', 'twentyeleven' ) ); ?> 31 </div> 32 <?php endif; ?> 33 </header><!-- .entry-header --> 34 35 <?php if ( is_search() ) : // Only display Excerpts for Search ?> 36 <div class="entry-summary"> 37 <?php the_excerpt(); ?> 38 </div><!-- .entry-summary --> 39 <?php else : ?> 40 <div class="entry-content"> 41 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> 42 <?php 43 wp_link_pages( 44 array( 45 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 46 'after' => '</div>', 47 ) 48 ); 49 ?> 50 </div><!-- .entry-content --> 51 <?php endif; ?> 52 53 <footer class="entry-meta"> 54 <?php $show_sep = false; ?> 55 <?php if ( is_object_in_taxonomy( get_post_type(), 'category' ) ) : // Hide category text when not supported ?> 56 <?php 57 /* translators: Used between list items, there is a space after the comma. */ 58 $categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) ); 59 if ( $categories_list ) : 60 ?> 61 <span class="cat-links"> 62 <?php 63 /* translators: 1: CSS classes, 2: Category list. */ 64 printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list ); 65 $show_sep = true; 66 ?> 67 </span> 68 <?php endif; // End if categories ?> 69 <?php endif; // End if is_object_in_taxonomy( get_post_type(), 'category' ) ?> 70 <?php if ( is_object_in_taxonomy( get_post_type(), 'post_tag' ) ) : // Hide tag text when not supported ?> 71 <?php 72 /* translators: Used between list items, there is a space after the comma. */ 73 $tags_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) ); 74 if ( $tags_list ) : 75 if ( $show_sep ) : 76 ?> 77 <span class="sep"> | </span> 78 <?php endif; // End if $show_sep ?> 79 <span class="tag-links"> 80 <?php 81 /* translators: 1: CSS classes, 2: Tag list. */ 82 printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); 83 $show_sep = true; 84 ?> 85 </span> 86 <?php endif; // End if $tags_list ?> 87 <?php endif; // End if is_object_in_taxonomy( get_post_type(), 'post_tag' ) ?> 88 89 <?php if ( comments_open() ) : ?> 90 <?php if ( $show_sep ) : ?> 91 <span class="sep"> | </span> 92 <?php endif; // End if $show_sep ?> 93 <span class="comments-link"><?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentyeleven' ) . '</span>', __( '<b>1</b> Reply', 'twentyeleven' ), __( '<b>%</b> Replies', 'twentyeleven' ) ); ?></span> 94 <?php endif; // End if comments_open() ?> 95 96 <?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?> 97 </footer><!-- .entry-meta --> 98 </article><!-- #post-<?php the_ID(); ?> -->
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sat Nov 23 20:47:33 2019 | Cross-referenced by PHPXref 0.7 |