
Untitled
By: a guest on
Feb 10th, 2013 | syntax:
PHP | size: 0.68 KB | hits: 45 | expires: Never
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<article 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' => '' . __( 'Pages:', 'boilerplate' ), 'after' => '' ) ); ?>
<?php edit_post_link( __( 'Edit', 'boilerplate' ), '', '' ); ?>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<?php comments_template( '', true ); ?>
<?php endwhile; ?>