Advertisement
Guest User

Untitled

a guest
Jul 12th, 2012
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. <?php if ( $wp_query->max_num_pages > 1 ) : ?>
  2. <div id="nav-above" class="navigation">
  3. <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div>
  4. <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
  5. </div><!-- #nav-above -->
  6. <?php endif; ?>
  7.  
  8. <?php if ( ! have_posts() ) : ?>
  9. <div id="post-0" class="post error404 not-found">
  10. <h1 class="entry-title"><?php _e( 'Not Found', 'twentyten' ); ?></h1>
  11. <div class="entry-content">
  12. <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyten' ); ?></p>
  13. <?php get_search_form(); ?>
  14. </div><!-- .entry-content -->
  15. </div><!-- #post-0 -->
  16. <?php endif; ?>
  17.  
  18. <?php while ( have_posts() ) : the_post(); ?>
  19. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  20. <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
  21.  
  22. <div class="entry-meta">
  23. <?php twentyten_posted_on(); ?>
  24. </div><!-- .entry-meta -->
  25.  
  26. <div class="entry-utility">
  27. <?php if ( count( get_the_category() ) ) : ?>
  28. <span class="cat-links">
  29. <?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?>
  30. </span>
  31. <span class="meta-sep">|</span>
  32. <?php endif; ?>
  33. <?php
  34. $tags_list = get_the_tag_list( '', ', ' );
  35. if ( $tags_list ):
  36. ?>
  37. <span class="tag-links">
  38. <?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?>
  39. </span>
  40. <span class="meta-sep">|</span>
  41. <?php endif; ?>
  42. <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
  43. <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
  44. </div><!-- .entry-utility -->
  45. </div><!-- #post-## -->
  46.  
  47. <?php comments_template( '', true ); ?>
  48.  
  49.  
  50. <?php endwhile; ?>
  51.  
  52. <?php /* Display navigation to next/previous pages when applicable */ ?>
  53. <?php if ( $wp_query->max_num_pages > 1 ) : ?>
  54. <div id="nav-below" class="navigation">
  55. <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div>
  56. <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
  57. </div><!-- #nav-below -->
  58. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement