2010-03-30 00:03:15 +02:00
< ? php
/**
* The loop that displays posts
*
* The loop displays the posts and the post content . See
* http :// codex . wordpress . org / The_Loop to understand it and
* http :// codex . wordpress . org / Template_Tags to understand
* the tags used in it .
*
* @ package WordPress
* @ subpackage Twenty Ten
* @ since 3.0 . 0
*/
?>
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 " >
< p >< ? php _e ( 'Apologies, but no results were found for the requested Archive. Perhaps searching will help find a related post.' , 'twentyten' ); ?> </p>
< ? php get_search_form (); ?>
</ div ><!-- . entry - content -->
</ div ><!-- #post-0 -->
< ? php endif ; ?>
2010-05-04 09:01:09 +02:00
< ? php /* Start the Loop */ ?>
2010-02-20 22:00:19 +01:00
< ? php while ( have_posts () ) : the_post (); ?>
2010-03-30 00:03:15 +02:00
2010-05-04 09:01:09 +02:00
< ? php /* How to Display posts in the Gallery Category */ ?>
2010-05-03 01:32:59 +02:00
< ? php if ( 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 (); ?> >
2010-03-16 21:17:22 +01: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-14 01:41:13 +02:00
2010-02-28 12:43:04 +01:00
< div class = " entry-meta " >
< ? php
2010-04-14 01:41:13 +02:00
printf ( __ ( '<span class="meta-prep meta-prep-author">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a> <span class="meta-sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>' , 'twentyten' ),
get_permalink (),
2010-02-28 12:43:04 +01:00
esc_attr ( get_the_time () ),
get_the_date (),
2010-03-16 21:17:22 +01:00
get_author_posts_url ( get_the_author_meta ( 'ID' ) ),
2010-02-28 12:43:04 +01:00
sprintf ( esc_attr__ ( 'View all posts by %s' , 'twentyten' ), get_the_author () ),
get_the_author ()
);
?>
</ div ><!-- . entry - meta -->
< div class = " entry-content " >
< div class = " gallery-thumb " >
< a class = " size-thumbnail " href = " <?php the_permalink(); ?> " >< ? php
2010-03-16 21:17:22 +01:00
$images = get_children ( array ( 'post_parent' => $post -> ID , 'post_type' => 'attachment' , 'post_mime_type' => 'image' , 'orderby' => 'menu_order' , 'order' => 'ASC' , 'numberposts' => 999 ) );
$total_images = count ( $images );
$image = array_shift ( $images );
2010-02-28 12:43:04 +01:00
echo wp_get_attachment_image ( $image -> ID , 'thumbnail' );
?> </a>
</ div >
2010-03-26 20:36:49 +01:00
< p >< em >< ? php printf ( __ ( 'This gallery contains <a %1$s>%2$s photos</a>.' , 'twentyten' ),
'href="' . get_permalink () . '" title="' . sprintf ( esc_attr__ ( 'Permalink to %s' , 'twentyten' ), the_title_attribute ( 'echo=0' ) ) . '" rel="bookmark"' ,
$total_images
2010-02-28 12:43:04 +01:00
); ?> </em></p>
< ? php the_excerpt ( '' ); ?>
</ div ><!-- . entry - content -->
< div class = " entry-utility " >
2010-05-07 20:13:20 +02: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-02-28 12:43:04 +01:00
< span class = " meta-sep " > | </ span >
< 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-02-28 12:43:04 +01:00
</ div ><!-- #entry-utility -->
</ div >
2010-03-30 00:03:15 +02:00
< ? php /* How to display posts in the asides category */ ?>
2010-05-03 01:32:59 +02:00
< ? php elseif ( 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-03 21:30:02 +02:00
< ? php if ( is_archive () || is_search () ) : // Only display Excerpts for archives & search ?>
2010-02-28 12:43:04 +01:00
< div class = " entry-summary " >
< ? php the_excerpt ( __ ( 'Continue reading <span class="meta-nav">→</span>' , 'twentyten' ) ); ?>
</ 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-02-28 12:43:04 +01:00
</ div ><!-- . entry - content -->
< ? php endif ; ?>
< div class = " entry-utility " >
< ? php
2010-04-14 01:41:13 +02:00
printf ( __ ( '<span class="meta-prep meta-prep-author">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a> <span class="meta-sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>' , 'twentyten' ),
get_permalink (),
2010-02-28 12:43:04 +01:00
esc_attr ( get_the_time () ),
get_the_date (),
2010-03-16 21:17:22 +01:00
get_author_posts_url ( get_the_author_meta ( 'ID' ) ),
2010-02-28 12:43:04 +01:00
sprintf ( esc_attr__ ( 'View all posts by %s' , 'twentyten' ), get_the_author () ),
get_the_author ()
);
?>
< span class = " meta-sep " > | </ span >
< 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-02-28 12:43:04 +01:00
</ div ><!-- #entry-utility -->
</ div ><!-- #post-<?php the_ID(); ?> -->
2010-05-04 09:01:09 +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 (); ?> >
2010-03-16 21:17:22 +01: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 12:43:04 +01:00
< div class = " entry-meta " >
< ? php
2010-04-14 01:41:13 +02:00
printf ( __ ( '<span class="meta-prep meta-prep-author">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a> <span class="meta-sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>' , 'twentyten' ),
get_permalink (),
2010-02-28 12:43:04 +01:00
esc_attr ( get_the_time () ),
get_the_date (),
2010-03-16 21:17:22 +01:00
get_author_posts_url ( get_the_author_meta ( 'ID' ) ),
2010-02-28 12:43:04 +01:00
sprintf ( esc_attr__ ( 'View all posts by %s' , 'twentyten' ), get_the_author () ),
get_the_author ()
);
?>
</ div ><!-- . entry - meta -->
2010-05-03 21:30:02 +02:00
< ? php if ( is_archive () || is_search () ) : // Only display Excerpts for archives & search ?>
2010-02-28 12:43:04 +01:00
< div class = " entry-summary " >
< ? php the_excerpt ( __ ( 'Continue reading <span class="meta-nav">→</span>' , 'twentyten' ) ); ?>
</ 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-05-03 21:16:47 +02:00
< span class = " cat-links " >< span class = " entry-utility-prep entry-utility-prep-cat-links " >< ? php _e ( 'Posted in ' , 'twentyten' ); ?> </span><?php the_category( ', ' ); ?></span>
2010-02-28 12:43:04 +01:00
< span class = " meta-sep " > | </ span >
2010-05-03 21:16:47 +02:00
< ? php the_tags ( '<span class="tag-links"><span class="entry-utility-prep entry-utility-prep-tag-links">' . __ ( 'Tagged ' , 'twentyten' ) . '</span>' , ', ' , '<span class="meta-sep"> | </span>' ); ?>
2010-02-28 12:43:04 +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-02-28 12:43:04 +01:00
</ div ><!-- #entry-utility -->
</ div ><!-- #post-<?php the_ID(); ?> -->
< ? php comments_template ( '' , true ); ?>
< ? php endif ; // if different categories queried ?>
2010-02-20 22:00:19 +01:00
< ? php endwhile ; ?>
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 ; ?>