Advertisement
deliciousthemes

Single file template

May 30th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.82 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Template part for displaying posts.
  4.  *
  5.  * @package My Theme
  6.  */
  7.  
  8. ?>
  9.  
  10. <article id="post-<?php esc_attr(the_ID()); ?>" <?php esc_attr(post_class()); ?>>
  11.  
  12.     <?php if ( has_post_thumbnail() ) { ?>
  13.  
  14.             <div class="post-thumbnail">
  15.                 <a href="<?php esc_url(the_permalink()); ?>">
  16.                     <?php the_post_thumbnail('stag-blog-thumbnail'); ?>
  17.                 </a>
  18.             </div><!--end post-thumbnail-->    
  19.     <?php } ?>
  20.     <header class="entry-header">
  21.  
  22.         <?php if(!is_single()) { ?>
  23.             <?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
  24.         <?php } ?>
  25.  
  26.     </header><!-- .entry-header -->
  27.  
  28.     <div class="entry-content">
  29.         <?php
  30.             the_content(esc_html__('Continue Reading', 'stag'));
  31.         ?>
  32.     </div><!-- .entry-content -->
  33.    
  34. </article><!-- #post-## -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement