Advertisement
Guest User

Untitled

a guest
May 8th, 2012
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.94 KB | None | 0 0
  1. <?php if(!is_single()) : global $more; $more = 0; endif; //enable more link ?>
  2.  
  3. <article id="post-<?php the_ID(); ?>" <?php post_class("post clearfix $class"); ?>>
  4.  
  5.     <time datetime="<?php the_time('o-m-d') ?>" class="post-date" pubdate><?php the_time('M j, Y') ?></time>
  6.    
  7.     <h1 class="post-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
  8.  
  9.     <p class="post-meta">
  10.         <span class="post-author"><?php the_author_posts_link() ?></span>
  11.         <span class="post-category"><?php the_category(', ') ?></span>
  12.         <?php the_tags(' <span class="post-tag">', ', ', '</span>'); ?>
  13.         <?php if ( comments_open() ) : ?>
  14.             <span class="post-comment"><?php comments_popup_link( __( '0 Comment', 'themify' ), __( '1 Comment', 'themify' ), __( '% Comments', 'themify' ) ); ?></span>
  15.         <?php endif; //post comment ?>
  16.     </p>
  17.        
  18.     <?php the_content(); ?>
  19.    
  20.     <?php edit_post_link(__('Edit', 'themify'), '[', ']'); ?>
  21.    
  22. </article>
  23. <!-- /.post -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement