PageRenderTime 48ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-content/themes/twentyten/loop.php

https://bitbucket.org/crypticrod/sr_wp_code
PHP | 176 lines | 124 code | 21 blank | 31 comment | 17 complexity | 18199644bdfe0ab3855d6d7b6dac1f9a MD5 | raw file
Possible License(s): AGPL-1.0, GPL-2.0, LGPL-2.1, GPL-3.0, LGPL-2.0, AGPL-3.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. <?php /* Display navigation to next/previous pages when applicable */ ?>
  22. <?php if ( $wp_query->max_num_pages > 1 ) : ?>
  23. <div id="nav-above" class="navigation">
  24. <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div>
  25. <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
  26. </div><!-- #nav-above -->
  27. <?php endif; ?>
  28. <?php /* If there are no posts to display, such as an empty archive page */ ?>
  29. <?php if ( ! have_posts() ) : ?>
  30. <div id="post-0" class="post error404 not-found">
  31. <h1 class="entry-title"><?php _e( 'Not Found', 'twentyten' ); ?></h1>
  32. <div class="entry-content">
  33. <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyten' ); ?></p>
  34. <?php get_search_form(); ?>
  35. </div><!-- .entry-content -->
  36. </div><!-- #post-0 -->
  37. <?php endif; ?>
  38. <?php
  39. /* Start the Loop.
  40. *
  41. * In Twenty Ten we use the same loop in multiple contexts.
  42. * It is broken into three main parts: when we're displaying
  43. * posts that are in the gallery category, when we're displaying
  44. * posts in the asides category, and finally all other posts.
  45. *
  46. * Additionally, we sometimes check for whether we are on an
  47. * archive page, a search page, etc., allowing for small differences
  48. * in the loop on each template without actually duplicating
  49. * the rest of the loop that is shared.
  50. *
  51. * Without further ado, the loop:
  52. */ ?>
  53. <?php while ( have_posts() ) : the_post(); ?>
  54. <?php /* How to display posts in the Gallery category. */ ?>
  55. <?php if ( in_category( _x('gallery', 'gallery category slug', 'twentyten') ) ) : ?>
  56. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  57. <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>
  58. <div class="entry-meta">
  59. <?php twentyten_posted_on(); ?>
  60. </div><!-- .entry-meta -->
  61. <div class="entry-content">
  62. <?php if ( post_password_required() ) : ?>
  63. <?php the_content(); ?>
  64. <?php else : ?>
  65. <?php
  66. $images = get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999 ) );
  67. if ( $images ) :
  68. $total_images = count( $images );
  69. $image = array_shift( $images );
  70. $image_img_tag = wp_get_attachment_image( $image->ID, 'thumbnail' );
  71. ?>
  72. <div class="gallery-thumb">
  73. <a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo $image_img_tag; ?></a>
  74. </div><!-- .gallery-thumb -->
  75. <p><em><?php printf( __( 'This gallery contains <a %1$s>%2$s photos</a>.', 'twentyten' ),
  76. 'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"',
  77. $total_images
  78. ); ?></em></p>
  79. <?php endif; ?>
  80. <?php the_excerpt(); ?>
  81. <?php endif; ?>
  82. </div><!-- .entry-content -->
  83. <div class="entry-utility">
  84. <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>
  85. <span class="meta-sep">|</span>
  86. <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
  87. <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
  88. </div><!-- .entry-utility -->
  89. </div><!-- #post-## -->
  90. <?php /* How to display posts in the asides category */ ?>
  91. <?php elseif ( in_category( _x('asides', 'asides category slug', 'twentyten') ) ) : ?>
  92. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  93. <?php if ( is_archive() || is_search() ) : // Display excerpts for archives and search. ?>
  94. <div class="entry-summary">
  95. <?php the_excerpt(); ?>
  96. </div><!-- .entry-summary -->
  97. <?php else : ?>
  98. <div class="entry-content">
  99. <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
  100. </div><!-- .entry-content -->
  101. <?php endif; ?>
  102. <div class="entry-utility">
  103. <?php twentyten_posted_on(); ?>
  104. <span class="meta-sep">|</span>
  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. <?php /* How to display all other posts. */ ?>
  110. <?php else : ?>
  111. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  112. <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>
  113. <div class="entry-meta">
  114. <?php twentyten_posted_on(); ?>
  115. </div><!-- .entry-meta -->
  116. <?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>
  117. <div class="entry-summary">
  118. <?php the_excerpt(); ?>
  119. </div><!-- .entry-summary -->
  120. <?php else : ?>
  121. <div class="entry-content">
  122. <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
  123. <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
  124. </div><!-- .entry-content -->
  125. <?php endif; ?>
  126. <div class="entry-utility">
  127. <?php if ( count( get_the_category() ) ) : ?>
  128. <span class="cat-links">
  129. <?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?>
  130. </span>
  131. <span class="meta-sep">|</span>
  132. <?php endif; ?>
  133. <?php
  134. $tags_list = get_the_tag_list( '', ', ' );
  135. if ( $tags_list ):
  136. ?>
  137. <span class="tag-links">
  138. <?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?>
  139. </span>
  140. <span class="meta-sep">|</span>
  141. <?php endif; ?>
  142. <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
  143. <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
  144. </div><!-- .entry-utility -->
  145. </div><!-- #post-## -->
  146. <?php comments_template( '', true ); ?>
  147. <?php endif; // This was the if statement that broke the loop into three parts based on categories. ?>
  148. <?php endwhile; // End the loop. Whew. ?>
  149. <?php /* Display navigation to next/previous pages when applicable */ ?>
  150. <?php if ( $wp_query->max_num_pages > 1 ) : ?>
  151. <div id="nav-below" class="navigation">
  152. <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div>
  153. <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
  154. </div><!-- #nav-below -->
  155. <?php endif; ?>