mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-06 19:01:44 +01:00
aaf99e6913
WordPress' code just... wasn't. This is now dealt with. Props jrf, pento, netweb, GaryJ, jdgrimes, westonruter, Greg Sherwood from PHPCS, and everyone who's ever contributed to WPCS and PHPCS. Fixes #41057. Built from https://develop.svn.wordpress.org/trunk@42343 git-svn-id: http://core.svn.wordpress.org/trunk@42172 1a063a9b-81f0-0310-95a4-ce76da25c4cd
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* The loop that displays a page
|
|
*
|
|
* The loop displays the posts and the post content. See
|
|
* https://codex.wordpress.org/The_Loop to understand it and
|
|
* https://codex.wordpress.org/Template_Tags to understand
|
|
* 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
|
|
*/
|
|
?>
|
|
|
|
<?php
|
|
if ( have_posts() ) {
|
|
while ( have_posts() ) :
|
|
the_post();
|
|
?>
|
|
|
|
<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(); ?>
|
|
<?php
|
|
wp_link_pages(
|
|
array(
|
|
'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ),
|
|
'after' => '</div>',
|
|
)
|
|
);
|
|
?>
|
|
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
|
|
</div><!-- .entry-content -->
|
|
</div><!-- #post-## -->
|
|
|
|
<?php comments_template( '', true ); ?>
|
|
|
|
<?php endwhile;
|
|
}; // end of the loop. ?>
|