Advertisement
Guest User

mandrill

a guest
Nov 26th, 2009
507
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.54 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3.         <div id="container">   
  4.             <div id="content">
  5.  <?php the_post(); ?>          
  6.  
  7. <h1 class="page-title"><?php _e( 'Tag Archives:', 'your-theme' ) ?> <span><?php single_tag_title() ?></span></h1>
  8.  
  9. <?php rewind_posts(); ?>
  10.  
  11. <?php global $wp_query; $total_pages = $wp_query->max_num_pages; if ( $total_pages > 1 ) { ?>
  12.                 <div id="nav-above" class="navigation">
  13.                     <div class="nav-previous"><?php next_posts_link(__( '<span class="meta-nav">&laquo;</span> Older posts', 'your-theme' )) ?></div>
  14.                     <div class="nav-next"><?php previous_posts_link(__( 'Newer posts <span class="meta-nav">&raquo;</span>', 'your-theme' )) ?></div>
  15.                 </div><!-- #nav-above -->
  16. <?php } ?>         
  17.  
  18. <?php while ( have_posts() ) : the_post(); ?>
  19.  
  20.                 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  21.                     <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( __('Permalink to %s', 'your-theme'), the_title_attribute('echo=0') ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
  22.  
  23.                     <div class="entry-meta">
  24.                         <span class="meta-prep meta-prep-author"><?php _e('By ', 'your-theme'); ?></span>
  25.                         <span class="author vcard"><a class="url fn n" href="<?php echo get_author_link( false, $authordata->ID, $authordata->user_nicename ); ?>" title="<?php printf( __( 'View all posts by %s', 'your-theme' ), $authordata->display_name ); ?>"><?php the_author(); ?></a></span>
  26.                         <span class="meta-sep"> | </span>
  27.                         <span class="meta-prep meta-prep-entry-date"><?php _e('Published ', 'your-theme'); ?></span>
  28.                         <span class="entry-date"><abbr class="published" title="<?php the_time('Y-m-d\TH:i:sO') ?>"><?php the_time( get_option( 'date_format' ) ); ?></abbr></span>
  29.                         <?php edit_post_link( __( 'Edit', 'your-theme' ), "<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t" ) ?>
  30.                     </div><!-- .entry-meta -->
  31.  
  32.                     <div class="entry-summary">
  33. <?php the_excerpt( __( 'Continue reading <span class="meta-nav">&raquo;</span>', 'your-theme' )  ); ?>
  34.                     </div><!-- .entry-summary -->
  35.  
  36.                     <div class="entry-utility">
  37.                         <span class="cat-links"><span class="entry-utility-prep entry-utility-prep-cat-links"><?php _e( 'Posted in ', 'your-theme' ); ?></span><?php echo get_the_category_list(', '); ?></span>
  38.                         <span class="meta-sep"> | </span>
  39.                         <?php if ( $tag_ur_it = tag_ur_it(', ') ) : // Returns tags other than the one queried ?>                      
  40.                         <span class="tag-links"><?php printf( __( 'Also tagged %s', 'your-theme' ), $tag_ur_it ) ?></span>
  41. <?php endif; ?>
  42.                         <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'your-theme' ), __( '1 Comment', 'your-theme' ), __( '% Comments', 'your-theme' ) ) ?></span>
  43.                         <?php edit_post_link( __( 'Edit', 'your-theme' ), "<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t\n" ) ?>
  44.                     </div><!-- #entry-utility -->  
  45.                 </div><!-- #post-<?php the_ID(); ?> -->
  46.  
  47. <?php endwhile; ?>         
  48.  
  49. <?php global $wp_query; $total_pages = $wp_query->max_num_pages; if ( $total_pages > 1 ) { ?>
  50.                 <div id="nav-below" class="navigation">
  51.                     <div class="nav-previous"><?php next_posts_link(__( '<span class="meta-nav">&laquo;</span> Older posts', 'your-theme' )) ?></div>
  52.                     <div class="nav-next"><?php previous_posts_link(__( 'Newer posts <span class="meta-nav">&raquo;</span>', 'your-theme' )) ?></div>
  53.                 </div><!-- #nav-below -->
  54. <?php } ?>
  55.             </div><!-- #content -->    
  56.         </div><!-- #container -->
  57.        
  58. <?php get_sidebar(); ?>
  59. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement