Changeset 13025 for trunk/wp-content/themes/twentyten/tag.php
- Timestamp:
- 02/08/2010 06:02:23 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyten/tag.php
r13012 r13025 1 1 <?php get_header(); ?> 2 3 <div id="container"> 2 3 <div id="container"> 4 4 <div id="content"> 5 6 <?php the_post(); ?> 7 5 6 <?php the_post(); ?> 7 8 8 <h1 class="page-title"><?php _e( 'Tag Archives:', 'twentyten' ) ?> <span><?php single_tag_title() ?></span></h1> 9 9 10 10 <?php rewind_posts(); ?> 11 11 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"> … … 15 15 <div class="nav-next"><?php previous_posts_link(__( 'Newer posts <span class="meta-nav">→</span>', 'twentyten' )) ?></div> 16 16 </div><!-- #nav-above --> 17 <?php } ?> 17 <?php } ?> 18 18 19 19 <?php while ( have_posts() ) : the_post(); ?> … … 26 26 <a href="<?php the_permalink(); ?>" title="<?php the_time('Y-m-d\TH:i:sO') ?>" rel="bookmark"><span class="entry-date"><?php the_time( get_option( 'date_format' ) ); ?></span></a> 27 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( __( 'View all posts by %s', 'twentyten' ), $authordata->display_name ); ?>"><?php the_author(); ?></a></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( __( 'View all posts by %s', 'twentyten' ), $authordata->display_name ); ?>"><?php the_author(); ?></a></span> 29 29 </div><!-- .entry-meta --> 30 31 <div class="entry-summary"> 30 31 <div class="entry-summary"> 32 32 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?> 33 33 </div><!-- .entry-summary --> … … 36 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 37 <span class="meta-sep"> | </span> 38 <?php if ( $tag_ur_it = tag_ur_it(', ') ) : // Returns tags other than the one queried ?> 38 <?php if ( $tag_ur_it = tag_ur_it(', ') ) : // Returns tags other than the one queried ?> 39 39 <span class="tag-links"><?php printf( __( 'Also tagged %s', 'twentyten' ), $tag_ur_it ) ?></span> 40 <?php endif; ?> 40 <?php endif; ?> 41 41 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ) ?></span> 42 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 </div><!-- #entry-utility --> 43 </div><!-- #entry-utility --> 44 44 </div><!-- #post-<?php the_ID(); ?> --> 45 45 46 <?php endwhile; ?> 46 <?php endwhile; ?> 47 47 48 48 <?php global $wp_query; $total_pages = $wp_query->max_num_pages; if ( $total_pages > 1 ) { ?> … … 51 51 <div class="nav-next"><?php previous_posts_link(__( 'Newer posts <span class="meta-nav">→</span>', 'twentyten' )) ?></div> 52 52 </div><!-- #nav-below --> 53 <?php } ?> 54 55 </div><!-- #content --> 53 <?php } ?> 54 55 </div><!-- #content --> 56 56 </div><!-- #container --> 57 58 <?php get_sidebar(); ?> 57 58 <?php get_sidebar(); ?> 59 59 <?php get_footer(); ?>
Note: See TracChangeset
for help on using the changeset viewer.