Advertisement
Guest User

Huwman Single by wpcub.com

a guest
May 6th, 2014
441
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <section class="content">
  4.  
  5. <?php get_template_part('inc/page-title'); ?>
  6.  
  7. <div class="pad group">
  8.  
  9. <?php while ( have_posts() ): the_post(); ?>
  10. <article <?php post_class(); ?>>
  11. <div class="post-inner group">
  12.  
  13. <h1 class="post-title entry-title"><?php the_title(); ?></h1>
  14. <p class="post-byline"><?php _e('by','hueman'); ?> <span class="vcard author"> <span class="fn"><?php the_author_posts_link(); ?> </span></span> &middot; <p class="date updated"><?php the_time('j M, Y'); ?></p></p>
  15.  
  16. <?php if( get_post_format() ) { get_template_part('inc/post-formats'); } ?>
  17.  
  18. <div class="clear"></div>
  19.  
  20. <div class="entry <?php if ( ot_get_option('sharrre') != 'off' ) { echo 'share'; }; ?>">
  21. <div class="entry-inner">
  22. <?php the_content(); ?>
  23. <?php wp_link_pages(array('before'=>'<div class="post-pages">'.__('Pages:','hueman'),'after'=>'</div>')); ?>
  24. </div>
  25. <?php if ( ot_get_option('sharrre') != 'off' ) { get_template_part('inc/sharrre'); } ?>
  26. <div class="clear"></div>
  27. </div><!--/.entry-->
  28.  
  29. </div><!--/.post-inner-->
  30. </article><!--/.post-->
  31. <?php endwhile; ?>
  32.  
  33. <div class="clear"></div>
  34.  
  35. <?php the_tags('<p class="post-tags"><span>'.__('Tags:','hueman').'</span> ','','</p>'); ?>
  36.  
  37. <?php if ( ( ot_get_option( 'author-bio' ) != 'off' ) && get_the_author_meta( 'description' ) ): ?>
  38. <div class="author-bio">
  39. <div class="bio-avatar"><?php echo get_avatar(get_the_author_meta('user_email'),'128'); ?></div>
  40. <p class="bio-name"><?php the_author_meta('display_name'); ?></p>
  41. <p class="bio-desc"><?php the_author_meta('description'); ?></p>
  42. <div class="clear"></div>
  43. </div>
  44. <?php endif; ?>
  45.  
  46. <?php if ( ot_get_option( 'post-nav' ) == 'content') { get_template_part('inc/post-nav'); } ?>
  47.  
  48. <?php if ( ot_get_option( 'related-posts' ) != '1' ) { get_template_part('inc/related-posts'); } ?>
  49.  
  50. <?php comments_template('/comments.php',true); ?>
  51.  
  52. </div><!--/.pad-->
  53.  
  54. </section><!--/.content-->
  55.  
  56. <?php get_sidebar(); ?>
  57.  
  58. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement