Advertisement
bowenac

Untitled

Jun 5th, 2014
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.07 KB | None | 0 0
  1.             <?php while ( have_posts() ) : the_post(); ?>
  2.  
  3.                 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  4.                     <header class="entry-header">
  5.                         <?php if ( has_post_thumbnail() && ! post_password_required() ) : ?>
  6.                         <div class="entry-thumbnail">
  7.                             <?php the_post_thumbnail(); ?>
  8.                         </div>
  9.                         <?php endif; ?>
  10.  
  11.                         <h1 class="entry-title"><?php the_title(); ?></h1>
  12.                          
  13.                     </header><!-- .entry-header -->
  14.  
  15.                     <div class="entry-content">
  16.                         <?php the_content(); ?>
  17.                         <?php if(function_exists('pf_show_link')){echo pf_show_link();} ?>
  18.                         <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
  19.                     </div><!-- .entry-content -->
  20.  
  21.                     <footer class="entry-meta">
  22.                         <?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
  23.                     </footer><!-- .entry-meta -->
  24.                 </article><!-- #post -->
  25.  
  26.             <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement