2010-03-30 00:03:15 +02:00
< ? php
/**
2010-05-17 08:32:03 +02:00
* The loop that displays posts .
2010-03-30 00:03:15 +02:00
*
2011-12-16 18:13:16 +01:00
* The loop displays the posts and the post content . See
2010-03-30 00:03:15 +02: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 20:56:27 +02: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-30 00:03:15 +02:00
* @ package WordPress
2010-05-16 19:10:21 +02:00
* @ subpackage Twenty_Ten
2010-05-17 08:36:11 +02:00
* @ since Twenty Ten 1.0
2010-03-30 00:03:15 +02:00
*/
?>
2010-05-04 09:01:09 +02:00
< ? php /* Display navigation to next/previous pages when applicable */ ?>
2010-02-28 12:43:04 +01:00
< ? php if ( $wp_query -> max_num_pages > 1 ) : ?>
2010-02-20 22:00:19 +01:00
< div id = " nav-above " class = " navigation " >
2010-03-16 21:17:22 +01: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 22:00:19 +01:00
</ div ><!-- #nav-above -->
2010-02-28 12:43:04 +01:00
< ? php endif ; ?>
2010-02-20 22:00:19 +01:00
2010-05-04 09:01:09 +02:00
< ? php /* If there are no posts to display, such as an empty archive page */ ?>
2010-02-20 22:00:19 +01: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 08:36:11 +02: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 22:00:19 +01:00
< ? php get_search_form (); ?>
</ div ><!-- . entry - content -->
</ div ><!-- #post-0 -->
< ? php endif ; ?>
2010-05-17 08:36:11 +02: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 19:06:56 +01:00
< ? php while ( have_posts () ) : the_post (); ?>
2010-03-30 00:03:15 +02:00
2010-12-08 00:31:35 +01:00
< ? php /* How to display posts of the Gallery format. The gallery category is the old way. */ ?>
2010-05-17 08:36:11 +02:00
2011-02-21 19:35:37 +01: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 12:43:04 +01:00
< div id = " post-<?php the_ID(); ?> " < ? php post_class (); ?> >
2013-04-29 18:57:30 +02:00
< h2 class = " entry-title " >< a href = " <?php the_permalink(); ?> " rel = " bookmark " >< ? php the_title (); ?> </a></h2>
2010-04-14 01:41:13 +02:00
2010-02-28 12:43:04 +01:00
< div class = " entry-meta " >
2010-05-16 22:53:36 +02:00
< ? php twentyten_posted_on (); ?>
2010-02-28 12:43:04 +01:00
</ div ><!-- . entry - meta -->
< div class = " entry-content " >
2010-06-10 20:23:08 +02:00
< ? php if ( post_password_required () ) : ?>
< ? php the_content (); ?>
2010-11-19 06:37:47 +01:00
< ? php else : ?>
< ? php
2013-03-27 21:37:34 +01:00
$images = twentyten_get_gallery_images ();
2010-07-12 21:40:21 +02:00
if ( $images ) :
$total_images = count ( $images );
$image = array_shift ( $images );
?>
< div class = " gallery-thumb " >
2013-03-27 21:37:34 +01:00
< a class = " size-thumbnail " href = " <?php the_permalink(); ?> " >< ? php echo wp_get_attachment_image ( $image , 'thumbnail' ); ?> </a>
2010-07-12 21:40:21 +02:00
</ div ><!-- . gallery - thumb -->
2010-12-20 10:34:58 +01: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' ),
2012-10-11 22:12:40 +02:00
'href="' . get_permalink () . '" title="' . esc_attr ( sprintf ( __ ( 'Permalink to %s' , 'twentyten' ), the_title_attribute ( 'echo=0' ) ) ) . '" rel="bookmark"' ,
2010-12-20 10:34:58 +01:00
number_format_i18n ( $total_images )
2010-07-12 21:40:21 +02:00
); ?> </em></p>
2013-03-27 21:37:34 +01:00
< ? php endif ; // end twentyten_get_gallery_images() check ?>
2010-07-12 21:40:21 +02:00
< ? php the_excerpt (); ?>
2010-06-10 20:23:08 +02:00
< ? php endif ; ?>
2010-02-28 12:43:04 +01:00
</ div ><!-- . entry - content -->
< div class = " entry-utility " >
2011-02-21 19:35:37 +01:00
< ? php if ( function_exists ( 'get_post_format' ) && 'gallery' == get_post_format ( $post -> ID ) ) : ?>
2010-12-08 00:31:35 +01: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 >
2013-03-22 23:56:55 +01:00
< ? php elseif ( $gallery = get_term_by ( 'slug' , _x ( 'gallery' , 'gallery category slug' , 'twentyten' ), 'category' ) && in_category ( $gallery -> term_id ) ) : ?>
< a href = " <?php echo get_category_link( $gallery ); ?> " title = " <?php esc_attr_e( 'View posts in the Gallery category', 'twentyten' ); ?> " >< ? php _e ( 'More Galleries' , 'twentyten' ); ?> </a>
2010-05-10 21:06:22 +02:00
< span class = " meta-sep " >|</ span >
2010-11-25 19:59:19 +01:00
< ? php endif ; ?>
2010-12-22 19:06:56 +01:00
< span class = " comments-link " >< ? php comments_popup_link ( __ ( 'Leave a comment' , 'twentyten' ), __ ( '1 Comment' , 'twentyten' ), __ ( '% Comments' , 'twentyten' ) ); ?> </span>
2010-04-08 05:13:48 +02:00
< ? php edit_post_link ( __ ( 'Edit' , 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">' , '</span>' ); ?>
2010-05-21 20:56:27 +02:00
</ div ><!-- . entry - utility -->
</ div ><!-- #post-## -->
2010-02-28 12:43:04 +01:00
2010-12-08 00:31:35 +01:00
< ? php /* How to display posts of the Aside format. The asides category is the old way. */ ?>
2010-05-17 08:36:11 +02:00
2011-02-21 19:35:37 +01: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 12:43:04 +01:00
< div id = " post-<?php the_ID(); ?> " < ? php post_class (); ?> >
2010-05-17 08:36:11 +02:00
< ? php if ( is_archive () || is_search () ) : // Display excerpts for archives and search. ?>
2010-02-28 12:43:04 +01:00
< div class = " entry-summary " >
2010-05-17 08:36:11 +02:00
< ? php the_excerpt (); ?>
2010-02-28 12:43:04 +01:00
</ div ><!-- . entry - summary -->
2010-05-17 08:36:11 +02:00
< ? php else : ?>
2010-02-28 12:43:04 +01:00
< div class = " entry-content " >
2010-05-04 09:01:09 +02:00
< ? php the_content ( __ ( 'Continue reading <span class="meta-nav">→</span>' , 'twentyten' ) ); ?>
2010-02-28 12:43:04 +01:00
</ div ><!-- . entry - content -->
2010-05-17 08:36:11 +02:00
< ? php endif ; ?>
2010-02-28 12:43:04 +01:00
< div class = " entry-utility " >
2010-05-16 22:53:36 +02:00
< ? php twentyten_posted_on (); ?>
2010-05-10 21:06:22 +02:00
< span class = " meta-sep " >|</ span >
2010-12-22 19:06:56 +01:00
< span class = " comments-link " >< ? php comments_popup_link ( __ ( 'Leave a comment' , 'twentyten' ), __ ( '1 Comment' , 'twentyten' ), __ ( '% Comments' , 'twentyten' ) ); ?> </span>
2010-04-08 05:13:48 +02:00
< ? php edit_post_link ( __ ( 'Edit' , 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">' , '</span>' ); ?>
2010-05-21 20:56:27 +02:00
</ div ><!-- . entry - utility -->
</ div ><!-- #post-## -->
2010-05-17 08:36:11 +02:00
< ? php /* How to display all other posts. */ ?>
2010-02-28 12:43:04 +01:00
< ? php else : ?>
< div id = " post-<?php the_ID(); ?> " < ? php post_class (); ?> >
2013-04-29 18:57:30 +02:00
< h2 class = " entry-title " >< a href = " <?php the_permalink(); ?> " rel = " bookmark " >< ? php the_title (); ?> </a></h2>
2010-02-28 12:43:04 +01:00
< div class = " entry-meta " >
2010-05-16 22:53:36 +02:00
< ? php twentyten_posted_on (); ?>
2010-02-28 12:43:04 +01:00
</ div ><!-- . entry - meta -->
2010-05-17 08:36:11 +02:00
< ? php if ( is_archive () || is_search () ) : // Only display excerpts for archives and search. ?>
2010-02-28 12:43:04 +01:00
< div class = " entry-summary " >
2010-06-14 10:24:34 +02:00
< ? php the_excerpt (); ?>
2010-02-28 12:43:04 +01:00
</ div ><!-- . entry - summary -->
< ? php else : ?>
< div class = " entry-content " >
2010-05-04 09:01:09 +02:00
< ? php the_content ( __ ( 'Continue reading <span class="meta-nav">→</span>' , 'twentyten' ) ); ?>
2010-03-26 06:37:55 +01:00
< ? php wp_link_pages ( array ( 'before' => '<div class="page-link">' . __ ( 'Pages:' , 'twentyten' ), 'after' => '</div>' ) ); ?>
2010-02-28 12:43:04 +01:00
</ div ><!-- . entry - content -->
< ? php endif ; ?>
< div class = " entry-utility " >
2010-11-12 22:53:15 +01:00
< ? php if ( count ( get_the_category () ) ) : ?>
2010-05-15 11:59:15 +02:00
< span class = " cat-links " >
2010-06-11 18:15:25 +02: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 11:59:15 +02:00
</ span >
< span class = " meta-sep " >|</ span >
< ? php endif ; ?>
2010-05-10 23:24:32 +02:00
< ? php
$tags_list = get_the_tag_list ( '' , ', ' );
if ( $tags_list ) :
?>
< span class = " tag-links " >
2010-06-11 18:15:25 +02: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 23:24:32 +02:00
</ span >
< span class = " meta-sep " >|</ span >
< ? php endif ; ?>
2010-12-22 19:06:56 +01:00
< span class = " comments-link " >< ? php comments_popup_link ( __ ( 'Leave a comment' , 'twentyten' ), __ ( '1 Comment' , 'twentyten' ), __ ( '% Comments' , 'twentyten' ) ); ?> </span>
2010-04-08 05:13:48 +02:00
< ? php edit_post_link ( __ ( 'Edit' , 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">' , '</span>' ); ?>
2010-05-21 20:56:27 +02:00
</ div ><!-- . entry - utility -->
2010-05-26 06:36:42 +02:00
</ div ><!-- #post-## -->
2010-02-28 12:43:04 +01:00
< ? php comments_template ( '' , true ); ?>
2010-05-17 08:36:11 +02: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 22:00:19 +01:00
2010-05-04 09:01:09 +02:00
< ? php /* Display navigation to next/previous pages when applicable */ ?>
2010-02-28 12:43:04 +01:00
< ? php if ( $wp_query -> max_num_pages > 1 ) : ?>
2010-02-20 22:00:19 +01:00
< div id = " nav-below " class = " navigation " >
2010-03-16 21:17:22 +01: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 22:00:19 +01:00
</ div ><!-- #nav-below -->
2010-03-16 21:17:22 +01:00
< ? php endif ; ?>