Changeset 13128 for trunk/wp-content/themes/twentyten/tag.php
- Timestamp:
- 02/14/2010 01:00:22 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyten/tag.php
r13111 r13128 6 6 <?php the_post(); ?> 7 7 8 <h1 class="page-title"><?php _e( 'Tag Archives: ', 'twentyten' ) ?> <span><?php single_tag_title()?></span></h1>8 <h1 class="page-title"><?php _e( 'Tag Archives: ', 'twentyten' ); ?><span><?php single_tag_title(); ?></span></h1> 9 9 10 10 <?php rewind_posts(); ?> … … 12 12 <?php global $wp_query; $total_pages = $wp_query->max_num_pages; if ( $total_pages > 1 ) { ?> 13 13 <div id="nav-above" class="navigation"> 14 <div class="nav-previous"><?php next_posts_link(__( '<span class="meta-nav">←</span> Older posts', 'twentyten' )) ?></div>15 <div class="nav-next"><?php previous_posts_link(__( 'Newer posts <span class="meta-nav">→</span>', 'twentyten' )) ?></div>14 <div class="nav-previous"><?php next_posts_link(__( '<span class="meta-nav">←</span> Older posts', 'twentyten' )); ?></div> 15 <div class="nav-next"><?php previous_posts_link(__( 'Newer posts <span class="meta-nav">→</span>', 'twentyten' )); ?></div> 16 16 </div><!-- #nav-above --> 17 17 <?php } ?> … … 23 23 24 24 <div class="entry-meta"> 25 <span class="meta-prep meta-prep-author"><?php _e( 'Posted on ', 'twentyten'); ?></span>26 <a href="<?php the_permalink(); ?>" title="<?php the_time( 'Y-m-d\TH:i:sO')?>" rel="bookmark"><span class="entry-date"><?php echo get_the_date(); ?></span></a>27 <span class="meta-sep"> <?php _e('by ', 'twentyten'); ?></span>28 <span class="author vcard"><a class="url fn n" href="<?php echo get_author_posts_url( $authordata->ID , $authordata->user_nicename ); ?>" title="<?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), $authordata->display_name); ?>"><?php the_author(); ?></a></span>25 <span class="meta-prep meta-prep-author"><?php _e( 'Posted on ', 'twentyten' ); ?></span> 26 <a href="<?php the_permalink(); ?>" title="<?php the_time(); ?>" rel="bookmark"><span class="entry-date"><?php echo get_the_date(); ?></span></a> 27 <span class="meta-sep"><?php _e( ' by ', 'twentyten' ); ?></span> 28 <span class="author vcard"><a class="url fn n" href="<?php echo get_author_posts_url( $authordata->ID ); ?>" title="<?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ); ?>"><?php the_author(); ?></a></span> 29 29 </div><!-- .entry-meta --> 30 30 31 31 <div class="entry-summary"> 32 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' )); ?>32 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?> 33 33 </div><!-- .entry-summary --> 34 34 35 35 <div class="entry-utility"> 36 <span class="cat-links"><span class="entry-utility-prep entry-utility-prep-cat-links"><?php _e( 'Posted in ', 'twentyten' ); ?></span><?php echo get_the_category_list( ', '); ?></span>37 <span class="meta-sep"> |</span>36 <span class="cat-links"><span class="entry-utility-prep entry-utility-prep-cat-links"><?php _e( 'Posted in ', 'twentyten' ); ?></span><?php echo get_the_category_list( ', ' ); ?></span> 37 <span class="meta-sep"><?php _e( ' | ', 'twentyten' ); ?></span> 38 38 <?php if ( $tag_ur_it = tag_ur_it(', ') ) : // Returns tags other than the one queried ?> 39 <span class="tag-links"><?php printf( __( 'Also tagged %s', 'twentyten' ), $tag_ur_it ) ?></span>39 <span class="tag-links"><?php printf( __( 'Also tagged %s', 'twentyten' ), $tag_ur_it ); ?></span> 40 40 <?php endif; ?> 41 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ) ?></span>42 <?php edit_post_link( __( 'Edit', 'twentyten' ), "<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t\n" ) ?>41 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span> 42 <?php edit_post_link( __( 'Edit', 'twentyten' ), "<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t\n" ); ?> 43 43 </div><!-- #entry-utility --> 44 44 </div><!-- #post-<?php the_ID(); ?> --> … … 48 48 <?php global $wp_query; $total_pages = $wp_query->max_num_pages; if ( $total_pages > 1 ) { ?> 49 49 <div id="nav-below" class="navigation"> 50 <div class="nav-previous"><?php next_posts_link(__( '<span class="meta-nav">←</span> Older posts', 'twentyten' )) ?></div>51 <div class="nav-next"><?php previous_posts_link(__( 'Newer posts <span class="meta-nav">→</span>', 'twentyten' )) ?></div>50 <div class="nav-previous"><?php next_posts_link(__( '<span class="meta-nav">←</span> Older posts', 'twentyten' )); ?></div> 51 <div class="nav-next"><?php previous_posts_link(__( 'Newer posts <span class="meta-nav">→</span>', 'twentyten' )); ?></div> 52 52 </div><!-- #nav-below --> 53 53 <?php } ?>
Note: See TracChangeset
for help on using the changeset viewer.