2010-10-09 11:17:42 +02:00
< ? php
/**
2013-09-25 19:04:10 +02:00
* The loop that displays a single post
2010-10-09 11:17:42 +02:00
*
2011-12-16 18:13:16 +01:00
* The loop displays the posts and the post content . See
2019-07-26 00:46:55 +02:00
* https :// developer . wordpress . org / themes / basics / the - loop / to understand it and
* https :// developer . wordpress . org / themes / basics / template - tags / to understand
2010-10-09 11:17:42 +02:00
* the tags used in it .
*
* This can be overridden in child themes with loop - single . php .
*
* @ package WordPress
* @ subpackage Twenty_Ten
* @ since Twenty Ten 1.2
*/
?>
2017-12-01 00:11:00 +01:00
< ? php
if ( have_posts () ) {
while ( have_posts () ) :
the_post ();
2018-08-17 03:51:36 +02:00
?>
2010-10-09 11:17:42 +02:00
< div id = " nav-above " class = " navigation " >
< div class = " nav-previous " >< ? php previous_post_link ( '%link' , '<span class="meta-nav">' . _x ( '←' , 'Previous post link' , 'twentyten' ) . '</span> %title' ); ?> </div>
< div class = " nav-next " >< ? php next_post_link ( '%link' , '%title <span class="meta-nav">' . _x ( '→' , 'Next post link' , 'twentyten' ) . '</span>' ); ?> </div>
</ div ><!-- #nav-above -->
< div id = " post-<?php the_ID(); ?> " < ? php post_class (); ?> >
< h1 class = " entry-title " >< ? php the_title (); ?> </h1>
< div class = " entry-meta " >
< ? php twentyten_posted_on (); ?>
</ div ><!-- . entry - meta -->
< div class = " entry-content " >
< ? php the_content (); ?>
2017-12-01 00:11:00 +01:00
< ? php
wp_link_pages (
array (
'before' => '<div class="page-link">' . __ ( 'Pages:' , 'twentyten' ),
'after' => '</div>' ,
)
);
2018-08-17 03:51:36 +02:00
?>
2010-10-09 11:17:42 +02:00
</ div ><!-- . entry - content -->
2020-01-29 01:45:18 +01:00
< ? php if ( get_the_author_meta ( 'description' ) ) : // If a user has filled out their description, show a bio on their entries. ?>
2010-10-09 11:17:42 +02:00
< div id = " entry-author-info " >
< div id = " author-avatar " >
2013-09-25 19:04:10 +02:00
< ? php
2013-10-25 00:59:20 +02:00
/** This filter is documented in author.php */
2019-09-10 21:23:55 +02:00
$author_bio_avatar_size = apply_filters ( 'twentyten_author_bio_avatar_size' , 60 );
echo get_avatar ( get_the_author_meta ( 'user_email' ), $author_bio_avatar_size );
2013-09-25 19:04:10 +02:00
?>
2017-12-01 00:11:00 +01:00
</ div ><!-- #author-avatar -->
< div id = " author-description " >
2019-07-09 03:10:00 +02:00
< h2 >
< ? php
2019-09-03 02:41:05 +02:00
/* translators: %s: Author display name. */
2019-07-09 03:10:00 +02:00
printf ( __ ( 'About %s' , 'twentyten' ), get_the_author () );
?>
</ h2 >
2010-10-09 11:17:42 +02:00
< ? php the_author_meta ( 'description' ); ?>
< div id = " author-link " >
2015-01-22 01:42:44 +01:00
< a href = " <?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?> " rel = " author " >
2019-07-09 03:10:00 +02:00
< ? php
2019-09-03 02:41:05 +02:00
/* translators: %s: Author display name. */
2019-07-09 03:10:00 +02:00
printf ( __ ( 'View all posts by %s <span class="meta-nav">→</span>' , 'twentyten' ), get_the_author () );
?>
2010-10-09 11:17:42 +02:00
</ a >
</ div ><!-- #author-link -->
2017-12-01 00:11:00 +01:00
</ div ><!-- #author-description -->
</ div ><!-- #entry-author-info -->
< ? php endif ; ?>
2010-10-09 11:17:42 +02:00
2017-12-01 00:11:00 +01:00
< div class = " entry-utility " >
< ? php twentyten_posted_in (); ?>
< ? php edit_post_link ( __ ( 'Edit' , 'twentyten' ), '<span class="edit-link">' , '</span>' ); ?>
</ div ><!-- . entry - utility -->
2019-04-16 03:30:53 +02:00
</ div ><!-- #post-<?php the_ID(); ?> -->
2010-10-09 11:17:42 +02:00
2017-12-01 00:11:00 +01:00
< div id = " nav-below " class = " navigation " >
< div class = " nav-previous " >< ? php previous_post_link ( '%link' , '<span class="meta-nav">' . _x ( '←' , 'Previous post link' , 'twentyten' ) . '</span> %title' ); ?> </div>
< div class = " nav-next " >< ? php next_post_link ( '%link' , '%title <span class="meta-nav">' . _x ( '→' , 'Next post link' , 'twentyten' ) . '</span>' ); ?> </div>
</ div ><!-- #nav-below -->
2010-10-09 11:17:42 +02:00
2017-12-01 00:11:00 +01:00
< ? php comments_template ( '' , true ); ?>
2010-10-09 11:17:42 +02:00
2017-12-01 00:11:00 +01:00
< ? php endwhile ;
2020-01-29 01:45:18 +01:00
}; // End of the loop. ?>