Advertisement
alchymyth

loop.php for wp-pagenavi

Mar 26th, 2011
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 9.36 KB | None | 0 0
  1. <?php
  2. /**
  3.  * The loop that displays posts.
  4.  *
  5.  * The loop displays the posts and the post content.  See
  6.  * http://codex.wordpress.org/The_Loop to understand it and
  7.  * http://codex.wordpress.org/Template_Tags to understand
  8.  * the tags used in it.
  9.  *
  10.  * This can be overridden in child themes with loop.php or
  11.  * loop-template.php, where 'template' is the loop context
  12.  * requested by a template. For example, loop-index.php would
  13.  * be used if it exists and we ask for the loop with:
  14.  * <code>get_template_part( 'loop', 'index' );</code>
  15.  *
  16.  * @package WordPress
  17.  * @subpackage Twenty_Ten
  18.  * @since Twenty Ten 1.0
  19.  */
  20. ?>
  21.  
  22. <?php if( function_exists('wp_pagenavi') ) : ?>
  23. <div id="nav-above" class="navigation">
  24. <?php wp_pagenavi(); ?>
  25. </div>
  26. <?php else : ?>
  27.  <?php /* Display navigation to next/previous pages when applicable */ ?>
  28. <?php if ( $wp_query->max_num_pages > 1 ) : ?>
  29.     <div id="nav-above" class="navigation">
  30.         <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div>
  31.         <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
  32.     </div><!-- #nav-above -->
  33. <?php endif; ?>
  34. <?php endif; //end of if( function_exists() )//  ?>
  35.  
  36. <?php /* If there are no posts to display, such as an empty archive page */ ?>
  37. <?php if ( ! have_posts() ) : ?>
  38.     <div id="post-0" class="post error404 not-found">
  39.         <h1 class="entry-title"><?php _e( 'Not Found', 'twentyten' ); ?></h1>
  40.         <div class="entry-content">
  41.             <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyten' ); ?></p>
  42.             <?php get_search_form(); ?>
  43.         </div><!-- .entry-content -->
  44.     </div><!-- #post-0 -->
  45. <?php endif; ?>
  46.  
  47. <?php
  48.     /* Start the Loop.
  49.      *
  50.      * In Twenty Ten we use the same loop in multiple contexts.
  51.      * It is broken into three main parts: when we're displaying
  52.      * posts that are in the gallery category, when we're displaying
  53.      * posts in the asides category, and finally all other posts.
  54.      *
  55.      * Additionally, we sometimes check for whether we are on an
  56.      * archive page, a search page, etc., allowing for small differences
  57.      * in the loop on each template without actually duplicating
  58.      * the rest of the loop that is shared.
  59.      *
  60.      * Without further ado, the loop:
  61.      */ ?>
  62. <?php while ( have_posts() ) : the_post(); ?>
  63.  
  64. <?php /* How to display posts of the Gallery format. The gallery category is the old way. */ ?>
  65.  
  66.     <?php if ( ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) || in_category( _x( 'gallery', 'gallery category slug', 'twentyten' ) ) ) : ?>
  67.         <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  68.             <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>
  69.  
  70.             <div class="entry-meta">
  71.                 <?php twentyten_posted_on(); ?>
  72.             </div><!-- .entry-meta -->
  73.  
  74.             <div class="entry-content">
  75. <?php if ( post_password_required() ) : ?>
  76.                 <?php the_content(); ?>
  77. <?php else : ?>
  78.                 <?php
  79.                     $images = get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999 ) );
  80.                     if ( $images ) :
  81.                         $total_images = count( $images );
  82.                         $image = array_shift( $images );
  83.                         $image_img_tag = wp_get_attachment_image( $image->ID, 'thumbnail' );
  84.                 ?>
  85.                         <div class="gallery-thumb">
  86.                             <a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo $image_img_tag; ?></a>
  87.                         </div><!-- .gallery-thumb -->
  88.                         <p><em><?php printf( _n( 'This gallery contains <a %1$s>%2$s photo</a>.', 'This gallery contains <a %1$s>%2$s photos</a>.', $total_images, 'twentyten' ),
  89.                                 'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"',
  90.                                 number_format_i18n( $total_images )
  91.                             ); ?></em></p>
  92.                 <?php endif; ?>
  93.                         <?php the_excerpt(); ?>
  94. <?php endif; ?>
  95.             </div><!-- .entry-content -->
  96.  
  97.             <div class="entry-utility">
  98.             <?php if ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) : ?>
  99.                 <a href="<?php echo get_post_format_link( 'gallery' ); ?>" title="<?php esc_attr_e( 'View Galleries', 'twentyten' ); ?>"><?php _e( 'More Galleries', 'twentyten' ); ?></a>
  100.                 <span class="meta-sep">|</span>
  101.             <?php elseif ( in_category( _x( 'gallery', 'gallery category slug', 'twentyten' ) ) ) : ?>
  102.                 <a href="<?php echo get_term_link( _x( 'gallery', 'gallery category slug', 'twentyten' ), 'category' ); ?>" title="<?php esc_attr_e( 'View posts in the Gallery category', 'twentyten' ); ?>"><?php _e( 'More Galleries', 'twentyten' ); ?></a>
  103.                 <span class="meta-sep">|</span>
  104.             <?php endif; ?>
  105.                 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
  106.                 <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
  107.             </div><!-- .entry-utility -->
  108.         </div><!-- #post-## -->
  109.  
  110. <?php /* How to display posts of the Aside format. The asides category is the old way. */ ?>
  111.  
  112.     <?php elseif ( ( function_exists( 'get_post_format' ) && 'aside' == get_post_format( $post->ID ) ) || in_category( _x( 'asides', 'asides category slug', 'twentyten' ) )  ) : ?>
  113.         <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  114.  
  115.         <?php if ( is_archive() || is_search() ) : // Display excerpts for archives and search. ?>
  116.             <div class="entry-summary">
  117.                 <?php the_excerpt(); ?>
  118.             </div><!-- .entry-summary -->
  119.         <?php else : ?>
  120.             <div class="entry-content">
  121.                 <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
  122.             </div><!-- .entry-content -->
  123.         <?php endif; ?>
  124.  
  125.             <div class="entry-utility">
  126.                 <?php twentyten_posted_on(); ?>
  127.                 <span class="meta-sep">|</span>
  128.                 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
  129.                 <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
  130.             </div><!-- .entry-utility -->
  131.         </div><!-- #post-## -->
  132.  
  133. <?php /* How to display all other posts. */ ?>
  134.  
  135.     <?php else : ?>
  136.         <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  137.             <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>
  138.  
  139.             <div class="entry-meta">
  140.                 <?php twentyten_posted_on(); ?>
  141.             </div><!-- .entry-meta -->
  142.  
  143.     <?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>
  144.             <div class="entry-summary">
  145.                 <?php the_excerpt(); ?>
  146.             </div><!-- .entry-summary -->
  147.     <?php else : ?>
  148.             <div class="entry-content">
  149.                 <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
  150.                 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
  151.             </div><!-- .entry-content -->
  152.     <?php endif; ?>
  153.  
  154.             <div class="entry-utility">
  155.                 <?php if ( count( get_the_category() ) ) : ?>
  156.                     <span class="cat-links">
  157.                         <?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?>
  158.                     </span>
  159.                     <span class="meta-sep">|</span>
  160.                 <?php endif; ?>
  161.                 <?php
  162.                     $tags_list = get_the_tag_list( '', ', ' );
  163.                     if ( $tags_list ):
  164.                 ?>
  165.                     <span class="tag-links">
  166.                         <?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?>
  167.                     </span>
  168.                     <span class="meta-sep">|</span>
  169.                 <?php endif; ?>
  170.                 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
  171.                 <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
  172.             </div><!-- .entry-utility -->
  173.         </div><!-- #post-## -->
  174.  
  175.         <?php comments_template( '', true ); ?>
  176.  
  177.     <?php endif; // This was the if statement that broke the loop into three parts based on categories. ?>
  178.  
  179. <?php endwhile; // End the loop. Whew. ?>
  180.  
  181. <?php if( function_exists('wp_pagenavi') ) : ?>
  182. <div id="nav-below" class="navigation">
  183. <?php wp_pagenavi(); ?>
  184. </div>
  185. <?php else : ?>
  186. <?php /* Display navigation to next/previous pages when applicable */ ?>
  187. <?php if (  $wp_query->max_num_pages > 1 ) : ?>
  188.                 <div id="nav-below" class="navigation">
  189.                     <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div>
  190.                     <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
  191.                 </div><!-- #nav-below -->
  192. <?php endif; ?>
  193. <?php endif; //end of if( function_exists() )//  ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement