Advertisement
Guest User

Untitled

a guest
Feb 10th, 2013
428
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.68 KB | None | 0 0
  1. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  2.                 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  3.                 <?php if ( is_front_page() ) { ?>
  4.                     <h2 class="entry-title"><?php the_title(); ?></h2>
  5.                 <?php } else { ?>  
  6.                     <h1 class="entry-title"><?php the_title(); ?></h1>
  7.                 <?php } ?>
  8.                     <div class="entry-content">
  9.                         <?php the_content(); ?>
  10.                         <?php wp_link_pages( array( 'before' => '' . __( 'Pages:', 'boilerplate' ), 'after' => '' ) ); ?>
  11.                         <?php edit_post_link( __( 'Edit', 'boilerplate' ), '', '' ); ?>
  12.                     </div><!-- .entry-content -->
  13.                 </article><!-- #post-## -->
  14.                 <?php comments_template( '', true ); ?>
  15. <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement