2010-10-09 11:17:42 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2013-09-25 19:04:10 +02:00
|
|
|
* The loop that displays a page
|
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-page.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="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
|
|
<?php if ( is_front_page() ) { ?>
|
|
|
|
<h2 class="entry-title"><?php the_title(); ?></h2>
|
|
|
|
<?php } else { ?>
|
|
|
|
<h1 class="entry-title"><?php the_title(); ?></h1>
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<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
|
|
|
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
|
|
|
|
</div><!-- .entry-content -->
|
2019-04-16 03:30:53 +02:00
|
|
|
</div><!-- #post-<?php the_ID(); ?> -->
|
2010-10-09 11:17:42 +02:00
|
|
|
|
|
|
|
<?php comments_template( '', true ); ?>
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
<?php endwhile;
|
2020-01-29 01:45:18 +01:00
|
|
|
}; // End of the loop. ?>
|