2010-03-29 18:03:15 -04:00
< ? php
/**
2010-05-17 02:32:03 -04:00
* The loop that displays posts .
2010-03-29 18:03:15 -04:00
*
2011-12-16 12:13:16 -05:00
* The loop displays the posts and the post content . See
2010-03-29 18:03:15 -04:00
* http :// codex . wordpress . org / The_Loop to understand it and
* http :// codex . wordpress . org / Template_Tags to understand
* the tags used in it .
*
2010-05-21 14:56:27 -04:00
* This can be overridden in child themes with loop . php or
* loop - template . php , where 'template' is the loop context
* requested by a template . For example , loop - index . php would
* be used if it exists and we ask for the loop with :
* < code > get_template_part ( 'loop' , 'index' ); </ code >
*
2010-03-29 18:03:15 -04:00
* @ package WordPress
2010-05-16 13:10:21 -04:00
* @ subpackage Twenty_Ten
2010-05-17 02:36:11 -04:00
* @ since Twenty Ten 1.0
2010-03-29 18:03:15 -04:00
*/
?>
2010-05-04 03:01:09 -04:00
< ? php /* Display navigation to next/previous pages when applicable */ ?>
2010-02-28 06:43:04 -05:00
< ? php if ( $wp_query -> max_num_pages > 1 ) : ?>
2010-02-20 16:00:19 -05:00
< div id = " nav-above " class = " navigation " >
2010-03-16 16:17:22 -04:00
< div class = " nav-previous " >< ? php next_posts_link ( __ ( '<span class="meta-nav">←</span> Older posts' , 'twentyten' ) ); ?> </div>
< div class = " nav-next " >< ? php previous_posts_link ( __ ( 'Newer posts <span class="meta-nav">→</span>' , 'twentyten' ) ); ?> </div>
2010-02-20 16:00:19 -05:00
</ div ><!-- #nav-above -->
2010-02-28 06:43:04 -05:00
< ? php endif ; ?>
2010-02-20 16:00:19 -05:00
2010-05-04 03:01:09 -04:00
< ? php /* If there are no posts to display, such as an empty archive page */ ?>
2010-02-20 16:00:19 -05:00
< ? php if ( ! have_posts () ) : ?>
< div id = " post-0 " class = " post error404 not-found " >
< h1 class = " entry-title " >< ? php _e ( 'Not Found' , 'twentyten' ); ?> </h1>
< div class = " entry-content " >
2010-05-17 02:36:11 -04:00
< p >< ? php _e ( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.' , 'twentyten' ); ?> </p>
2010-02-20 16:00:19 -05:00
< ? php get_search_form (); ?>
</ div ><!-- . entry - content -->
</ div ><!-- #post-0 -->
< ? php endif ; ?>
2010-05-17 02:36:11 -04:00
< ? php
/* Start the Loop .
*
* In Twenty Ten we use the same loop in multiple contexts .
* It is broken into three main parts : when we ' re displaying
* posts that are in the gallery category , when we ' re displaying
* posts in the asides category , and finally all other posts .
*
* Additionally , we sometimes check for whether we are on an
* archive page , a search page , etc . , allowing for small differences
* in the loop on each template without actually duplicating
* the rest of the loop that is shared .
*
* Without further ado , the loop :
*/ ?>
2010-12-22 13:06:56 -05:00
< ? php while ( have_posts () ) : the_post (); ?>
2010-03-29 18:03:15 -04:00
2010-12-07 18:31:35 -05:00
< ? php /* How to display posts of the Gallery format. The gallery category is the old way. */ ?>
2010-05-17 02:36:11 -04:00
2011-02-21 13:35:37 -05:00
< ? php if ( ( function_exists ( 'get_post_format' ) && 'gallery' == get_post_format ( $post -> ID ) ) || in_category ( _x ( 'gallery' , 'gallery category slug' , 'twentyten' ) ) ) : ?>
2010-02-28 06:43:04 -05:00
< div id = " post-<?php the_ID(); ?> " < ? php post_class (); ?> >
2010-03-16 16:17:22 -04:00
< 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>
2010-04-13 19:41:13 -04:00
2010-02-28 06:43:04 -05:00
< div class = " entry-meta " >
2010-05-16 16:53:36 -04:00
< ? php twentyten_posted_on (); ?>
2010-02-28 06:43:04 -05:00
</ div ><!-- . entry - meta -->
< div class = " entry-content " >
2010-06-10 14:23:08 -04:00
< ? php if ( post_password_required () ) : ?>
< ? php the_content (); ?>
2010-11-19 00:37:47 -05:00
< ? php else : ?>
< ? php
2010-07-12 15:40:21 -04:00
$images = get_children ( array ( 'post_parent' => $post -> ID , 'post_type' => 'attachment' , 'post_mime_type' => 'image' , 'orderby' => 'menu_order' , 'order' => 'ASC' , 'numberposts' => 999 ) );
if ( $images ) :
$total_images = count ( $images );
$image = array_shift ( $images );
$image_img_tag = wp_get_attachment_image ( $image -> ID , 'thumbnail' );
?>
< div class = " gallery-thumb " >
< a class = " size-thumbnail " href = " <?php the_permalink(); ?> " >< ? php echo $image_img_tag ; ?> </a>
</ div ><!-- . gallery - thumb -->
2010-12-20 04:34:58 -05:00
< 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' ),
2010-07-12 15:40:21 -04:00
'href="' . get_permalink () . '" title="' . sprintf ( esc_attr__ ( 'Permalink to %s' , 'twentyten' ), the_title_attribute ( 'echo=0' ) ) . '" rel="bookmark"' ,
2010-12-20 04:34:58 -05:00
number_format_i18n ( $total_images )
2010-07-12 15:40:21 -04:00
); ?> </em></p>
< ? php endif ; ?>
< ? php the_excerpt (); ?>
2010-06-10 14:23:08 -04:00
< ? php endif ; ?>
2010-02-28 06:43:04 -05:00
</ div ><!-- . entry - content -->
< div class = " entry-utility " >
2011-02-21 13:35:37 -05:00
< ? php if ( function_exists ( 'get_post_format' ) && 'gallery' == get_post_format ( $post -> ID ) ) : ?>
2010-12-07 18:31:35 -05:00
< a href = " <?php echo get_post_format_link( 'gallery' ); ?> " title = " <?php esc_attr_e( 'View Galleries', 'twentyten' ); ?> " >< ? php _e ( 'More Galleries' , 'twentyten' ); ?> </a>
< span class = " meta-sep " >|</ span >
< ? php elseif ( in_category ( _x ( 'gallery' , 'gallery category slug' , 'twentyten' ) ) ) : ?>
2010-11-19 00:37:47 -05:00
< 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>
2010-05-10 15:06:22 -04:00
< span class = " meta-sep " >|</ span >
2010-11-25 13:59:19 -05:00
< ? php endif ; ?>
2010-12-22 13:06:56 -05:00
< span class = " comments-link " >< ? php comments_popup_link ( __ ( 'Leave a comment' , 'twentyten' ), __ ( '1 Comment' , 'twentyten' ), __ ( '% Comments' , 'twentyten' ) ); ?> </span>
2010-04-07 23:13:48 -04:00
< ? php edit_post_link ( __ ( 'Edit' , 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">' , '</span>' ); ?>
2010-05-21 14:56:27 -04:00
</ div ><!-- . entry - utility -->
</ div ><!-- #post-## -->
2010-02-28 06:43:04 -05:00
2010-12-07 18:31:35 -05:00
< ? php /* How to display posts of the Aside format. The asides category is the old way. */ ?>
2010-05-17 02:36:11 -04:00
2011-02-21 13:35:37 -05:00
< ? php elseif ( ( function_exists ( 'get_post_format' ) && 'aside' == get_post_format ( $post -> ID ) ) || in_category ( _x ( 'asides' , 'asides category slug' , 'twentyten' ) ) ) : ?>
2010-02-28 06:43:04 -05:00
< div id = " post-<?php the_ID(); ?> " < ? php post_class (); ?> >
2010-05-17 02:36:11 -04:00
< ? php if ( is_archive () || is_search () ) : // Display excerpts for archives and search. ?>
2010-02-28 06:43:04 -05:00
< div class = " entry-summary " >
2010-05-17 02:36:11 -04:00
< ? php the_excerpt (); ?>
2010-02-28 06:43:04 -05:00
</ div ><!-- . entry - summary -->
2010-05-17 02:36:11 -04:00
< ? php else : ?>
2010-02-28 06:43:04 -05:00
< div class = " entry-content " >
2010-05-04 03:01:09 -04:00
< ? php the_content ( __ ( 'Continue reading <span class="meta-nav">→</span>' , 'twentyten' ) ); ?>
2010-02-28 06:43:04 -05:00
</ div ><!-- . entry - content -->
2010-05-17 02:36:11 -04:00
< ? php endif ; ?>
2010-02-28 06:43:04 -05:00
< div class = " entry-utility " >
2010-05-16 16:53:36 -04:00
< ? php twentyten_posted_on (); ?>
2010-05-10 15:06:22 -04:00
< span class = " meta-sep " >|</ span >
2010-12-22 13:06:56 -05:00
< span class = " comments-link " >< ? php comments_popup_link ( __ ( 'Leave a comment' , 'twentyten' ), __ ( '1 Comment' , 'twentyten' ), __ ( '% Comments' , 'twentyten' ) ); ?> </span>
2010-04-07 23:13:48 -04:00
< ? php edit_post_link ( __ ( 'Edit' , 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">' , '</span>' ); ?>
2010-05-21 14:56:27 -04:00
</ div ><!-- . entry - utility -->
</ div ><!-- #post-## -->
2010-05-17 02:36:11 -04:00
< ? php /* How to display all other posts. */ ?>
2010-02-28 06:43:04 -05:00
< ? php else : ?>
< div id = " post-<?php the_ID(); ?> " < ? php post_class (); ?> >
2010-03-16 16:17:22 -04:00
< 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>
2010-02-28 06:43:04 -05:00
< div class = " entry-meta " >
2010-05-16 16:53:36 -04:00
< ? php twentyten_posted_on (); ?>
2010-02-28 06:43:04 -05:00
</ div ><!-- . entry - meta -->
2010-05-17 02:36:11 -04:00
< ? php if ( is_archive () || is_search () ) : // Only display excerpts for archives and search. ?>
2010-02-28 06:43:04 -05:00
< div class = " entry-summary " >
2010-06-14 04:24:34 -04:00
< ? php the_excerpt (); ?>
2010-02-28 06:43:04 -05:00
</ div ><!-- . entry - summary -->
< ? php else : ?>
< div class = " entry-content " >
2010-05-04 03:01:09 -04:00
< ? php the_content ( __ ( 'Continue reading <span class="meta-nav">→</span>' , 'twentyten' ) ); ?>
2010-03-26 01:37:55 -04:00
< ? php wp_link_pages ( array ( 'before' => '<div class="page-link">' . __ ( 'Pages:' , 'twentyten' ), 'after' => '</div>' ) ); ?>
2010-02-28 06:43:04 -05:00
</ div ><!-- . entry - content -->
< ? php endif ; ?>
< div class = " entry-utility " >
2010-11-12 16:53:15 -05:00
< ? php if ( count ( get_the_category () ) ) : ?>
2010-05-15 05:59:15 -04:00
< span class = " cat-links " >
2010-06-11 12:15:25 -04:00
< ? php printf ( __ ( '<span class="%1$s">Posted in</span> %2$s' , 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links' , get_the_category_list ( ', ' ) ); ?>
2010-05-15 05:59:15 -04:00
</ span >
< span class = " meta-sep " >|</ span >
< ? php endif ; ?>
2010-05-10 17:24:32 -04:00
< ? php
$tags_list = get_the_tag_list ( '' , ', ' );
if ( $tags_list ) :
?>
< span class = " tag-links " >
2010-06-11 12:15:25 -04:00
< ? php printf ( __ ( '<span class="%1$s">Tagged</span> %2$s' , 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links' , $tags_list ); ?>
2010-05-10 17:24:32 -04:00
</ span >
< span class = " meta-sep " >|</ span >
< ? php endif ; ?>
2010-12-22 13:06:56 -05:00
< span class = " comments-link " >< ? php comments_popup_link ( __ ( 'Leave a comment' , 'twentyten' ), __ ( '1 Comment' , 'twentyten' ), __ ( '% Comments' , 'twentyten' ) ); ?> </span>
2010-04-07 23:13:48 -04:00
< ? php edit_post_link ( __ ( 'Edit' , 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">' , '</span>' ); ?>
2010-05-21 14:56:27 -04:00
</ div ><!-- . entry - utility -->
2010-05-26 00:36:42 -04:00
</ div ><!-- #post-## -->
2010-02-28 06:43:04 -05:00
< ? php comments_template ( '' , true ); ?>
2010-05-17 02:36:11 -04:00
< ? php endif ; // This was the if statement that broke the loop into three parts based on categories. ?>
< ? php endwhile ; // End the loop. Whew. ?>
2010-02-20 16:00:19 -05:00
2010-05-04 03:01:09 -04:00
< ? php /* Display navigation to next/previous pages when applicable */ ?>
2010-02-28 06:43:04 -05:00
< ? php if ( $wp_query -> max_num_pages > 1 ) : ?>
2010-02-20 16:00:19 -05:00
< div id = " nav-below " class = " navigation " >
2010-03-16 16:17:22 -04:00
< div class = " nav-previous " >< ? php next_posts_link ( __ ( '<span class="meta-nav">←</span> Older posts' , 'twentyten' ) ); ?> </div>
< div class = " nav-next " >< ? php previous_posts_link ( __ ( 'Newer posts <span class="meta-nav">→</span>' , 'twentyten' ) ); ?> </div>
2010-02-20 16:00:19 -05:00
</ div ><!-- #nav-below -->
2010-03-16 16:17:22 -04:00
< ? php endif ; ?>