• File: loop-page.php
  • Full Path: /home/lef/public_html/wp-content/themes/care3/loop-page.php
  • File size: 507 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>

<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'care' ), 'after' => '</div>' ) ); ?>
<?php edit_post_link( __( 'Edit', 'care' ), '<span class="edit-link">', '</span>' ); ?>

<div class="clear"></div>
</div><!-- .entry-content -->
</div><!-- #post-## -->

<?php endwhile; // end of the loop. ?>